• 二分求解 切绳子 (浮点数易出现精度问题)


    Cable master

    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 28644   Accepted: 6076

    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 /*浮点数最容易出现精度问题,二分时除来除去就会产生蝴蝶效应,
     2 转化为int型来解决是很好的方法
     3 */
     4 #include <iostream>
     5 #include <cstdio>
     6 #include <cstring>
     7 #include <cmath>
     8 using namespace std;
     9 
    10 int n,k;
    11 int len[10010];
    12 int is_ok(double mid)
    13 {
    14     int sum = 0;
    15     for(int i = 0; i < n; i++)
    16     {
    17         sum += len[i] / mid;
    18     }
    19 
    20     if(sum >= k)
    21         return 1;
    22     else
    23         return 0;
    24 }
    25 
    26 int main()
    27 {
    28     while(cin>>n>>k)
    29     {
    30 
    31         int max_len = 0;
    32         for(int i = 0; i < n; i++)
    33         {
    34             double t;
    35             cin>>t;
    36             len[i] = t*100;     //关键
    37             if(len[i] > max_len)
    38                 max_len = len[i];
    39         }
    40 
    41         int l = 1,r = max_len;
    42         int ans = 0;
    43         //二分求解
    44         while(l<=r )
    45         {
    46             int mid = (l + r) / 2;
    47             if(is_ok(mid))
    48             {
    49                 ans = max(mid,ans);  //更新ans
    50                 l = mid + 1;
    51             }
    52             else
    53             {
    54                 r= mid - 1;
    55             }
    56         }
    57 
    58         printf("%.2f
    ",(double)ans / 100.0);  //int再转成浮点数输出
    59 
    60     }
    61     return 0;
    62 }
    
    
  • 相关阅读:
    设计模式一 Simple Factory, Factory Method, Abstract Factory以及Builder模式简述
    SQL Server中对XML操作
    开发常用小工具介绍
    强制休息程序 EyeGuardian 眼睛守护者 Beta测试版
    定时计划任务方案比较以及通过脚本创建计划任务(SchTasks命令)
    在Myeclipse中配置Maven
    Jena的环境配置
    0x01_go代码简单示例
    0x00_go语言安装
    信息收集工具
  • 原文地址:https://www.cnblogs.com/cjshuang/p/4648827.html
Copyright © 2020-2023  润新知