Jzzhu has a big rectangular chocolate bar that consists of n × m unit squares. He wants to cut this bar exactly k times. Each cut must meet the following requirements:
- each cut should be straight (horizontal or vertical);
- each cut should go along edges of unit squares (it is prohibited to divide any unit chocolate square with cut);
- each cut should go inside the whole chocolate bar, and all cuts must be distinct.
The picture below shows a possible way to cut a 5 × 6 chocolate for 5 times.

Imagine Jzzhu have made k cuts and the big chocolate is splitted into several pieces. Consider the smallest (by area) piece of the chocolate, Jzzhu wants this piece to be as large as possible. What is the maximum possible area of smallest piece he can get with exactlyk cuts? The area of a chocolate piece is the number of unit squares in it.
A single line contains three integers n, m, k (1 ≤ n, m ≤ 109; 1 ≤ k ≤ 2·109).
Output a single integer representing the answer. If it is impossible to cut the big chocolate k times, print -1.
3 4 1
6
6 4 2
8
2 3 4
-1
In the first sample, Jzzhu can cut the chocolate following the picture below:

In the second sample the optimal division looks like this:

In the third sample, it's impossible to cut a 2 × 3 chocolate 4 times.
#include<stdio.h>
#include<algorithm>
using namespace std;
typedef long long LL;
int main()
{
LL n,m,k;
while(scanf("%I64d%I64d%I64d",&n,&m,&k)!=EOF)
{
if(n+m-2<k) printf("-1\n");
else
{
LL temp1 = n>m?n:m;
LL temp2 = n<m?n:m;
if(k<=temp2-1)
{
LL temp3 = max(temp1/(k+1)*temp2,temp2/(k+1)*temp1);
printf("%I64d\n",temp3);
}
else if(k<=temp1-1&&k>=temp2)
{
LL temp4 = max(temp1/(k+1)*temp2,temp1/(k-temp2+2));
printf("%I64d\n",temp4);
}
if(k>=temp1)
{
LL temp5 = max(temp2/(k-temp1+2),temp1/(k-temp2+2));
printf("%I64d\n",temp5);
}
}
}
return 0;
}
探讨如何通过有限次数的切割,使一块n×m的巧克力分割后的最小一块面积尽可能大。问题包含输入输出样例及限制条件。
477

被折叠的 条评论
为什么被折叠?



