hdu 1969 Pie

Pie

Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 6752    Accepted Submission(s):
2564

Problem Description

My birthday is coming up and traditionally I‘m serving
pie. Not just one pie, no, I have a number N of them, of various tastes and of
various sizes. F of my friends are coming to my party and each of them gets a
piece of pie. This should be one piece of one pie, not several small pieces
since that looks messy. This piece can be one whole pie though.

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.

Input

One line with a positive integer: the number of test
cases. Then for each test case:
---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.

Output

For each test case, output one line with the largest
possible volume V such that me and my friends can all get a pie piece of size V.
The answer should be given as a floating point number with an absolute error of
at most 10^(-3).

Sample Input

3

3 3

4 3 3

1 24

5

10 5

1 4 2 3 4 5 6 5 4 2

Sample Output

25.1327

3.1416

50.2655

Source

NWERC2006

Recommend

wangye   |   We have carefully selected several similar
problems for you:  1551 2446 2298 2333 2241

一道二分的题,学了这个算法很久了,但一直没有独立的写出过代码,二分的题不容易想到用二分解决,所以需要仔细思考,不过这道题是很明显的二分,而且是利用精度解决问题。

题意:有n块蛋糕,m个人,自己也要蛋糕,所以是分给m+1个人,然后给出每块蛋糕的半径,每个人都要一块完整的蛋糕,则每个人最大能平均分到的蛋糕面积是多少。(蛋糕是平面圆)

附上代码:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <cmath>
 5 #include <algorithm>
 6 using namespace std;
 7 int n,m;
 8 double pi=acos(-1.0);  //计算π的值,这样更精确
 9 double a[10005];
10 int xx(double x)
11 {
12     int num=0;
13     for(int i=0; i<n; i++)
14     {
15         num+=int(a[i]/x);  //计算有多少块蛋糕大于此时的平均面积
16     }
17     if(num>=m)   //如果有这么多块面积分给所有人,则满足题意
18         return 1;
19     else
20         return 0;
21 }
22 int main()
23 {
24     int T,i,j,r;
25     double v;
26     scanf("%d",&T);
27     while(T--)
28     {
29         scanf("%d%d",&n,&m);
30         m++;   //加上自己要的一块
31         for(i=0; i<n; i++)
32         {
33             scanf("%d",&r);
34             a[i]=r*r*pi;   //求出每块蛋糕的面积
35             v+=a[i];      //记录所有蛋糕的总面积
36         }
37         double max,l,r,mid;
38         sort(a,a+n);    //二分之前一定要排序
39         max=v/m;      //每个人平均分到的最大蛋糕就是蛋糕总面积的平均值
40         l=0.0,r=max;   //面积从0到平均值二分
41         while((r-l)>1e-6)    //满足这个精度则跳出循环(不了解精度问题,模仿别人的写法)
42         {
43             mid=(r+l)/2;     //二分取中
44             if(xx(mid))     //判断,若满足,则最大蛋糕面积可能更大,则取后半段继续搜
45                 l=mid;
46             else          //若不满足,则蛋糕取大了,则取前半段继续搜
47                 r=mid;
48         }
49         printf("%.4lf\n",l);   //保留四位小数输出
50     }
51 }
时间: 2024-12-26 09:03:30

hdu 1969 Pie的相关文章

hdu 1969 Pie(二分查找)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1969 Pie Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 4513    Accepted Submission(s): 1819 Problem Description My birthday is coming up and trad

HDU 1969 Pie(二分搜索)

题目链接 Problem Description My birthday is coming up and traditionally I'm serving pie. Not just one pie, no, I have a number N of them, of various tastes and of various sizes. F of my friends are coming to my party and each of them gets a piece of pie.

HDU 1969 Pie(二分法)

My birthday is coming up and traditionally I’m serving pie. Not just one pie, no, I have a number N of them, of various tastes and of various sizes. F of my friends are coming to my party and each of them gets a piece of pie. This should be one piece

hdu 1969 Pie(贪心+二分查找)(简单)

Pie Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 5628    Accepted Submission(s): 2184 Problem Description My birthday is coming up and traditionally I'm serving pie. Not just one pie, no, I

HDU 1969 Pie 二分

1.题意:一项分圆饼的任务,一堆圆饼共有N个,半径不同,厚度一样,要分给F+1个人.要求每个人分的一样多,圆饼允许切但是不允许拼接,也就是每个人拿到的最多是一个完整饼,或者一个被切掉一部分的饼,要求你算出每人能分到的饼的体积最大值.输入数据依次给出,测试数据组数T,每组数据中,给出N,F,以及N个圆饼的半径.输出最大体积的数值,精确到小数点后四位. 2.分析:一看是这种输出就知道用二分写会很高效,这里对"能分出的最大体积值"进行二分.首先,这个值有界,最大值为总体积除以总人数的值,即Σ

HDU 1969 Pie (二分查找)

题目链接:click here~~ 题目大意:n块馅饼分给m+1个人,每一个人的馅饼必须是整块的.馅饼能够被切开.但不能组合,也不一定要所有分完,问你每一个人最大能分到多大体积的馅饼面积. [解题思路]:二分,对于每一个V值,我们枚举相应情况下人数P的多少,发现是单调递减的,因此二分查找区间,初始值left=0,right=inf;然后judge函数推断当前mid值是否能使得p>=m,因此累计ans=num[i]/mid,写的时候二分用的是while推断,怎么调试答案就是差了那么一点点.后来索性

HDU 1969 (二分)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1969 Pie Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 4547    Accepted Submission(s): 1837 Problem Description My birthday is coming up and tra

HDU 3392 Pie(DP+滚动数组)

题意:有一些男生女生,男生女生数量差不超过100 ,男生女生两两配对.要求求出一种配对方法,使每一对的高度差的和最小. 思路:(我是真的笨笨笨!!磨磨唧唧写一堆是因为我笨!我看了别人的博客,思路全是学别人的,轻喷!)设人少的一组人数为n,b[],人多的一组人数为m,g[](b[],g[]先排好序),用dp[i][j]表示n中的前i个人与m中的前j个人配对所得到的最小值. 那么dp[i][j]就是min(dp[i-1][k]+|b[i]-g[k]|),就是n中前i-1个人和m中前1~k个人配对的最

HDU 3392 Pie(滚动数组优化)

Problem Description A lot of boys and girls come to our company to pie friends. After we get their information, we need give each of them an advice for help. We know everyone's height, and we believe that the less difference of a girl and a boy has,