博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cable master(二分题 注意精度)
阅读量:7212 次
发布时间:2019-06-29

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

Cable master
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 26596   Accepted: 5673

Description

Inhabitants of the Wonderland have decided to hold a regional programming contest. The Judging Committee has volunteered and has promised to organize the most honest contest ever. It was decided to connect computers for the contestants using a "star" topology - i.e. connect them all to a single central hub. To organize a truly honest contest, the Head of the Judging Committee has decreed to place all contestants evenly around the hub on an equal distance from it.
To buy network cables, the Judging Committee has contacted a local network solutions provider with a request to sell for them a specified number of cables with equal lengths. The Judging Committee wants the cables to be as long as possible to sit contestants as far from each other as possible.
The Cable Master of the company was assigned to the task. He knows the length of each cable in the stock up to a centimeter,and he can cut them with a centimeter precision being told the length of the pieces he must cut. However, this time, the length is not known and the Cable Master is completely puzzled.
You are to help the Cable Master, by writing a program that will determine the maximal possible length of a cable piece that can be cut from the cables in the stock, to get the specified number of pieces.

Input

The first line of the input file contains two integer numb ers N and K, separated by a space. N (1 = N = 10000) is the number of cables in the stock, and K (1 = K = 10000) is the number of requested pieces. The first line is followed by N lines with one number per line, that specify the length of each cable in the stock in meters. All cables are at least 1 meter and at most 100 kilometers in length. All lengths in the input file are written with a centimeter precision, with exactly two digits after a decimal point.

Output

Write to the output file the maximal length (in meters) of the pieces that Cable Master may cut from the cables in the stock to get the requested number of pieces. The number must be written with a centimeter precision, with exactly two digits after a decimal point.
If it is not possible to cut the requested number of pieces each one being at least one centimeter long, then the output file must contain the single number "0.00" (without quotes).

Sample Input

4 118.027.434.575.39

Sample Output

2.00 给出n条绳子的长度,从这些绳子中切割出k条绳子,求能切割出的最大长度,保留两位小数。   设C(X)表示能否切割出长度为x的K条绳子。 二分枚举X就行了。
1 #include 
2 #include
3 #include
4 #include
5 #include
6 #include
7 #include
8 #include
9 #include
10 #include
11 #include
12 #include
13 #include
14 using namespace std;15 const int INF=0x4fffffff;16 const int EXP=1e-6;17 const int MS=10005;18 19 int N,K;20 double len[MS];21 22 bool judge(double x)23 {24 int cnt=0;25 for(int i=1;i<=N;i++)26 cnt+=(int)(len[i]/x+EXP);27 return cnt>=K;28 }29 30 void solve()31 {32 double l=0.0,r=MS*10.0;33 double mid;34 for(int i=0;i<100;i++)35 {36 mid=(l+r)/2;37 if(judge(mid))38 l=mid;39 else40 r=mid; // 注意这里是double。41 }42 printf("%.2lf\n",floor(mid*100)/100);43 // 千万注意精度44 // printf("%.2lf\n",mid); WA45 }46 47 int main()48 {49 scanf("%d%d",&N,&K);50 for(int i=1;i<=N;i++)51 scanf("%lf",&len[i]);52 solve();53 return 0;54 }

 

 

转载于:https://www.cnblogs.com/767355675hutaishi/p/4375441.html

你可能感兴趣的文章
redis cli命令
查看>>
网上开店进货渠道大参考
查看>>
图灵成立七周年——经典回顾
查看>>
我曾经七次鄙视自己的灵魂 卡里.纪伯伦
查看>>
Oracle 默认表空间(default permanent tablespace) 说明
查看>>
Dapper的语法应用
查看>>
Effective C++ 条款44
查看>>
MODBUS-RTU通讯协议简介
查看>>
在.net中序列化读写xml方法的总结(转载)
查看>>
百度贴吧高考作文强贴
查看>>
Leetcode: Design Hit Counter
查看>>
FrameBuffer编程二(简单的程序上)
查看>>
一种避免 iOS 内存碎片的方法
查看>>
『中级篇』容器网络之host和none(29)
查看>>
每日源码分析 - Lodash(remove.js)
查看>>
Django 1.8.2 文档
查看>>
设计模式——简单工厂模式
查看>>
开源漏洞扫描工具(OWASP-Dependency-Check)探索
查看>>
中文分词算法工具hanlp源码解析
查看>>
使用Netsil监控Kubernetes上的微服务
查看>>