• Cable master


    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 11
    8.02
    7.43
    4.57
    5.39

    Sample Output

    2.00


    二分不仅仅是查找。
     1 #include"iostream"
     2 #include"cmath"
     3 #include"cstdio"
     4 #include"cstring"
     5 #include"algorithm"
     6 using namespace std;
     7 const int ms=100004;
     8 double cable[ms/10];
     9 int N,K;
    10 bool judge(double x)
    11 {
    12     int num=0;
    13     for(int i=0;i<N;i++)
    14         num+=(int)(cable[i]/x);
    15     return num>=K;
    16 }
    17 void solve()
    18 {
    19     double l=0.0,r=ms*1.0;
    20     for(int i=0;i<100;i++)
    21     {
    22         double mid=(l+r)/2;
    23         if(judge(mid))
    24             l=mid;
    25         else
    26             r=mid;
    27     }
    28     printf("%.2lf
    ",floor(r*100)/100);
    29     return ;
    30 }
    31 int main()
    32 {
    33     cin>>N>>K;
    34     for(int i=0;i<N;i++)
    35         cin>>cable[i];
    36     solve();
    37     return 0;
    38 }
  • 相关阅读:
    selenium+Python(鼠标和键盘事件)
    【Selenium】Option加载用户配置,Chrom命令行参数
    内存管理
    ddt源码修改:HtmlTestRunner报告依据接口名显示用例名字
    面向对象之魔术方法
    高阶函数
    闭包&装饰器
    07课堂问题整理
    05课堂问题整理
    04课堂问题整理
  • 原文地址:https://www.cnblogs.com/767355675hutaishi/p/3926030.html
Copyright © 2020-2023  润新知