• POJ 1064 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

    分析:
    根据最长的棍子二分枚举切割长度。

    这点很容易想到。

    本题麻烦的地方在于小数的二分。

    由于精度丢失问题,如果直接使用double进行二分,那么二分确定的最大长度必然是不精确的。

    如:只有1根100.0的棍子,分成10段。如果使用double二分,那么就算把精度控制到0.0000001,

    最后的答案也就9.9999666。,而不是10.

    由于只要求2位小数,则把所有棍子长度*100,变成整数二分即可。

    最后答案ans/=100。

    代码:

    #include<iostream>
    #include<stdio.h>
    #include<stdlib.h>
    #include<math.h>
    using namespace std;
    int N,K;
    double L[10009];
    
    ///判断每小段的长度为x的话,能不能满足分成K段
    bool C(double x)
    {
        int num=0;
        for(int i=0; i<N; i++)
        {
            num+=(int)(L[i]/x);
        }
        return num>=K;
    }
    
    void solve()
    {
        double lb=0,ub=0x3f3f3f3f;
        for(int i=0; i<100; i++)///尽可能的将分的范围具体
        {
            double mid=(lb+ub)/2;
            if(C(mid)) lb=mid;
            else ub=mid;
        }
        printf("%.2lf
    ",floor(ub*100)/100);
    }
    
    int main()
    {
        scanf("%d%d",&N,&K);
        for(int i=0; i<N; i++)
            scanf("%lf",&L[i]);
        solve();
        return 0;
    }
    
  • 相关阅读:
    Xpath定位总结
    robotframework运行时后台报错UnicodeDecodeError
    Selenium驱动Microsoft Edge浏览器(基于robotframework框架)的方法
    robotframework自动化测试安装配置
    硬币
    矩阵乘法
    动态规划和凸性优化
    动态规划背包问题--做题小总结
    CSAPP实验attacklab
    信息学奥赛出局?教育部:若提出申请,会认真研究
  • 原文地址:https://www.cnblogs.com/cmmdc/p/7207472.html
Copyright © 2020-2023  润新知