博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
uva 12097 - Pie(二分,4级)
阅读量:5363 次
发布时间:2019-06-15

本文共 2253 字,大约阅读时间需要 7 分钟。

Problem C - Pie

Time limit: 1 second

 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 ≤ 10000: the number of pies and the number of friends.
  • One line with N integers ri with 1 ≤ ri ≤ 10000: 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

33 34 3 31 24510 51 4 2 3 4 5 6 5 4 2

Sample Output

25.13273.141650.2655
The 2006 ACM Northwestern European Programming Contest

思路:二分结果,判断是否能切出符合的块数

#include
#include
#include
#include
using namespace std;const double pi=acos(-1.0);const int mm=1e4+9;const double mx=1e-6;double f[mm];int n,m;bool judge(double mid){ int ans=0; for(int i=0;i
m)return 1; else return 0;}double fabs(double x){ if(x<0)return -x; return x;}int main(){ int cas; while(~scanf("%d",&cas)) { while(cas--) { scanf("%d%d",&n,&m); for(int i=0;i
mx) { mid=(l+r)/2; if(judge(mid))l=mid; else r=mid; } ///cout<<(l+r)/2<

转载于:https://www.cnblogs.com/nealgavin/archive/2013/05/17/3205925.html

你可能感兴趣的文章
JavaScript中的BOM和DOM
查看>>
360浏览器兼容模式 不能$.post (不是a 连接 onclick的问题!!)
查看>>
spring注入Properties
查看>>
jmeter(五)创建web测试计划
查看>>
1305: [CQOI2009]dance跳舞 - BZOJ
查看>>
将html代码中的大写标签转换成小写标签
查看>>
jmeter多线程组间的参数传递
查看>>
零散笔记
查看>>
信息浏览器从Android的浏览器中传递cookie数据到App中信息浏览器
查看>>
hash储存机制
查看>>
HI3531uboot开机画面 分类: arm-linux-Ubunt...
查看>>
搭建ssm过程中遇到的问题集
查看>>
OpenLayers绘制图形
查看>>
tp5集合h5 wap和公众号支付
查看>>
Flutter学习笔记(一)
查看>>
iOS10 国行iPhone联网权限问题处理
查看>>
洛谷 P1991 无线通讯网
查看>>
mysql asyn 示例
查看>>
数据库第1,2,3范式学习
查看>>
《Linux内核设计与实现》第四章学习笔记
查看>>