CodeForces - 450C Jzzhu and Chocolate 数学 贪心

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 exactly k cuts? The area of a chocolate piece is the number of unit squares in it.

Input

A single line contains three integers n, m, k (1 ≤ n, m ≤ 109; 1 ≤ k ≤ 2·109).

Output

Output a single integer representing the answer. If it is impossible to cut the big chocolate k times, print -1.

Examples

Input

3 4 1

Output

6

Input

6 4 2

Output

8

Input

2 3 4

Output

-1

Note

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.

题意:n*m的矩形,切k刀后,求最小块数最大是多少。

题解: 设 n那条边切x刀(x<=n-1) , m那条边切y刀(y<=m-1),我们得到的最小块最大为 n / (x+1) * m / (y + 1)

因为n ,m, x+y=k,是固定的,我们让(x + 1)*(y + 1)最小即可,所以让x或y最小即可

#include <iostream>
#include <cstdio>
#include <cstring> 
using namespace std;
typedef long long ll;
#define INF 0x3f3f3f3f
#define PI acos(-1)
const int N = 1e5+10;
const int mod=1e9+7;
int n,m,k;
int main() {
	
	while(~scanf("%d%d%d",&n,&m,&k))
	{
		if(n-1+m-1<k) cout<<"-1\n";
		else
		{
			ll ans=0;
			k++;
			
			if(n>=k) ans=max(ans,(ll)(n)/k*m);
			else ans=max(ans,(ll)(m)/(k-n+1));
			
			if(m>=k) ans=max(ans,(ll)(m)/k*n);
			else ans=max(ans,(ll)(n)/(k-m+1));
			cout<<ans<<endl;
		}
		
	}
	return 0;
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值