日韩久久久精品,亚洲精品久久久久久久久久久,亚洲欧美一区二区三区国产精品 ,一区二区福利

[ACM] poj 1064 Cable master (二進制搜索)

系統 2741 0
Cable master
Time Limit: 1000MS ? Memory Limit: 10000K
Total Submissions: 21071 ? Accepted: 4542

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
    

Source

?

解題思路:

N條繩子,長度為別為li,要截成長度相等的K段,問切成小段的最大長度是多少。有的繩子能夠不切。

也就是求一個x ,?? l1/ x +l2/x +l3/x +.....=K,求最大的x。

求的過程中中間值x 。假設>k也是符合題意的。要求最大的x。==k.

條件C(x)=能夠得到K條長度為x的繩子

區間l=0,r等于無窮大,二分。推斷是否符合c(x) C(x)=(floor(Li/x)的總和大于或等于K

代碼:

      #include <iostream>

#include <iomanip>

#include <stdio.h>

#include <cmath>

using namespace std;

const int maxn=10003;

const int inf=0x7fffffff;

double l[maxn];

int n,k;



bool ok(double x)//推斷x是否可行

{

    int num=0;

    for(int i=0;i<n;i++)

    {

        num+=(int)(l[i]/x);

    }

    return num>=k;//被分成的段數大于等于K才可行

}



int main()

{

    cin>>n>>k;

    for(int i=0;i<n;i++)

        scanf("%lf",&l[i]);

    double l=0,r=inf;

    for(int i=0;i<100;i++)//二分,直到解的范圍足夠小

    {

        double mid=(l+r)/2;

        if(ok(mid))

            l=mid;

        else

            r=mid;

    }

    cout<<setiosflags(ios::fixed)<<setprecision(2)<<floor(l*100)/100;//l和r最后相等

    return 0;

}


    


?

版權聲明:本文博客原創文章,博客,未經同意,不得轉載。

[ACM] poj 1064 Cable master (二進制搜索)


更多文章、技術交流、商務合作、聯系博主

微信掃碼或搜索:z360901061

微信掃一掃加我為好友

QQ號聯系: 360901061

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。

【本文對您有幫助就好】

您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描上面二維碼支持博主2元、5元、10元、自定義金額等您想捐的金額吧,站長會非常 感謝您的哦!!!

發表我的評論
最新評論 總共0條評論
主站蜘蛛池模板: 阳山县| 兴隆县| 康乐县| 巫山县| 龙川县| 钦州市| 敦煌市| 肥城市| 施秉县| 石狮市| 拜泉县| 锦州市| 新巴尔虎右旗| 曲麻莱县| 隆子县| 松溪县| 红桥区| 金门县| 永修县| 油尖旺区| 沛县| 镇原县| 庆阳市| 南开区| 嵊泗县| 平远县| 天峻县| 凤冈县| 卓尼县| 枣阳市| 武鸣县| 潮州市| 吉首市| 临湘市| 金溪县| 中方县| 格尔木市| 永春县| 隆子县| 阿拉善右旗| 长阳|