思路
二分查找最大的边长数,judge()是什么呢?就是cal()一下当边长为x时,我们可以得到的巧克力块数,也就是for循环求出(choc[i].first/x)*(choc[i].second/x)的和,如果它小于k,那么r=mid-1,否则l-mid,所以定义mid的时候mid=l+r+1>>1
代码
#include <iostream>
#include <cstring>
#include <algorithm>
using namespace std;
typedef pair<int, int> PII;
const int N = 100010;
PII choc[N];
int n,k;
int cal(int x)
{
int cnt=0;
for(int i=1;i<=n;i++)
{
cnt+=(choc[i].first/x)*(choc[i].second/x);
}
return cnt;
}
int main()
{
cin>>n>>k;
for(int i=1;i<=n;i++)
{
cin>>choc[i].first>>choc[i].second;
}
int l=1,r=100010;
while(l<r)
{
int mid=l+r+1>>1;
if(cal(mid)<k)r=mid-1;
else l=mid;
}
cout<<l;
return 0;
}