Pie
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 7302 Accepted Submission(s): 2732
My friends are very annoying and if one of them gets a bigger piece than the others, they start complaining. Therefore all of them should get equally sized (but not necessarily equally shaped) pieces, even if this leads to some pie getting spoiled (which is better than spoiling the party). Of course, I want a piece of pie for myself too, and that piece should also be of the same size.
What is the largest possible piece size all of us can get? All the pies are cylindrical in shape and they all have the same height 1, but the radii of the pies can be different.
---One line with two integers N and F with 1 <= N, F <= 10 000: the number of pies and the number of friends.
---One line with N integers ri with 1 <= ri <= 10 000: the radii of the pies.
3 3
4 3 3
1 24
5
10 5
1 4 2 3 4 5 6 5 4 2
2 1
1000 1000
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#define Max 10000+10
#define INF 10000000000
#define P 3.1415926535898
using namespace std;
double a[Max];
int n,f;
int search(double size)
{
int num=;
for(int i=;i<n;i++)
num+=int(a[i]/size);
return num;
}
int main()
{
int T,i,j,e;
freopen("in.txt","r",stdin);
scanf("%d",&T);
while(T--)
{
scanf("%d%d",&n,&f);
f++;
for(i=;i<n;i++)
{
scanf("%d",&e);
a[i]=e*e*P;
}
double mid,l=,r=INF,k;
for(i=;i<;i++)
{
mid=(l+r)/;
if(search(mid)>=f) k=mid,l=mid;
else r=mid;
}
printf("%0.4lf\n",k);
}
}