首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【HDU】1551 - Cable master(二分)

【HDU】1551 - Cable master(二分)

作者头像
FishWang
发布2025-08-27 09:09:16
发布2025-08-27 09:09:16
14700
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

Cable master

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 3559 Accepted Submission(s): 1355

Problem 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 input consists of several testcases. The first line of each testcase contains two integer numbers 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 centimeter and at most 100 kilometers in length. All lengths in the input are written with a centimeter precision, with exactly two digits after a decimal point. The input is ended by line containing two 0's.

Output

For each testcase write to the output 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 must contain the single number "0.00" (without quotes).

Sample Input

代码语言:javascript
代码运行次数:0
运行
复制
   4 11
8.02
7.43
4.57
5.39
0 0

Sample Output

代码语言:javascript
代码运行次数:0
运行
复制
   2.00

Source

2001-2002 ACM Northeastern European Regional Programming Contest

和POJ的1064题一样,但是POJ太卡精度了,这个代码会WA(当然我换了好多精度都wa了,以后再碰它吧)

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <cmath> 
#include <algorithm>
using namespace std;
int n,k;
double s[10011];
bool check(double x)
{
	int ant = 0;
	for (int i = 1 ; i <= n ; i++)
	{
		ant += (int)(s[i] / x);
		if (ant >= k)
			return true;
	}
	return false;
}
int main()
{
	double l,r,mid;
	while (~scanf ("%d %d",&n,&k) && (n || k))
	{
		l = r = 0;
		for (int i = 1 ; i <= n ; i++)
		{
			scanf ("%lf",&s[i]);
			r = max (r , s[i]);
		}
		while (r - l > 1e-6)
		{
			mid = (l + r) / 2.0;
			if (check(mid))
				l = mid;
			else
				r = mid;
		}
		printf ("%.2lf\n",int(r*100)*0.01);
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Cable master
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档