首页 > 其他分享 >poj 1064 高精度 二分

poj 1064 高精度 二分

时间:2023-07-11 16:32:45浏览次数:71  
标签:二分 int 1064 number length poj 100 include cables


Cable master


Time Limit: 1000MS


Memory Limit: 10000K

Total Submissions: 32191


Accepted: 6888


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

Northeastern Europe 2001

解法一:浮点数二分           直接在double上二分

错因:没有向下取整 

解答:二分+高精度

<span style="color:#3333ff;">#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
double a[10005];
int main()
{
    int n,k;
    while(~scanf("%d %d",&n,&k))
    {
       for(int i=1;i<=n;i++)
         scanf("%lf",&a[i]);
       int t=100;double r=100000,l=0,mid;
       while(t--)
       {
           int cnt=0;mid=(r+l)/2.0;
           for(int i=1;i<=n;i++)
             cnt+=int(a[i]/mid);    //记得取整
           if(cnt>=k)
             l=mid;      //尽量向大的取
           else
             r=mid;
       }
       </span><span style="color:#ff0000;">printf("%0.2f\n",(floor(r*100))/100);  //注意利用floor函数向下取整,所以要预先*100!!!!!!!!!!向下取整是关键</span><span style="color:#3333ff;">
    }
    return 0;
}</span>


解法二:整数二分           先乘以100再运算,最后/100         

错因:l需要初始化为1而不能是0,否则会re;!!!!!!!!!!!!

解答:二分


#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;
int  a[10005];
int main()
{
    int n,k,maxn;double temp;
    while(~scanf("%d %d",&n,&k))
    {
       maxn=0;
       for(int i=1;i<=n;i++)
         {
             scanf("%lf",&temp);
             a[i]=int(temp*100);
             if(a[i]>maxn)
                maxn=a[i];
         }
       int mid,r=maxn,l=1;//l初始化为0会re,,因为l==0时若r==1或0则mid==0,下面的除以mid就会re!!!!!!!!!
       while(l<=r)
       {
           int cnt=0;mid=(r+l)/2;
           for(int i=1;i<=n;i++)
             cnt+=int(a[i]/mid);
           if(cnt>=k)
             l=mid+1;
           else
             r=mid-1;
       }
       printf("%0.2lf\n",r*0.01);//注意是*0.01,不能为/100,因为r是整型
    }
    return 0;
}





标签:二分,int,1064,number,length,poj,100,include,cables
From: https://blog.51cto.com/u_16185524/6689488

相关文章

  • poj 2236 Wireless Network 并查集
    WirelessNetworkTimeLimit: 10000MSMemoryLimit: 65536KTotalSubmissions: 20499Accepted: 8608DescriptionAnearthquaketakesplaceinSoutheastAsia.TheACM(AsiaCooperatedMedicalteam)havesetupawirelessnetworkwiththelapcomputers,butanun......
  • POJ 2109 Power of Cryptography 数学题 double和float精度和范围
    PowerofCryptographyTimeLimit:1000MSMemoryLimit:30000KTotalSubmissions:21354Accepted:10799DescriptionCurrentworkincryptographyinvolves(amongotherthings)largeprimenumbersandcomputingpowersofnumbersamongtheseprimes.Workint......
  • poj 1182 食物链 并查集
    食物链TimeLimit:1000MSMemoryLimit:10000KTotalSubmissions:56297Accepted:16500Description动物王国中有三类动物A,B,C,这三类动物的食物链构成了有趣的环形。A吃B,B吃C,C吃A。现有N个动物,以1-N编号。每个动物都是A,B,C中的一种,但是我们并不知道它到底是哪一种......
  • 浮点数二分模板
    题目给定一个浮点数$n$,求它的三次方根。输入格式共一行,包含一个浮点数$n$。输出格式共一行,包含一个浮点数,表示问题的解。注意,结果保留$6$位小数。数据范围$−10000≤n≤10000$输入样例:$1000.00$输出样例:$10.000000$思路浮点数二分可以直接分,无需考虑边界情况......
  • 整体二分学习笔记
    整体二分引入对于一堆询问,如果每个单独的询问都可以二分解决的话,时间复杂度为\(O(NM\logN)\),但实际上每次二分都会有一些残留信息被我们扔掉,如果我们将所有询问一起二分,就可以最大时间的减小复杂度。讲解经典例题:区间第k大给定一个序列a和一个整数S,有2种操作:1.将a......
  • Cesium学习笔记3——加载topojson和Geojson
    在根目录下新建bucket.css@import"../Build/CesiumUnminified/Widgets/widgets.css";@import"../Build/CesiumUnminified/Widgets/lighter.css";html{height:100%}body{background:#000;color:#eee;font-family:sans-serif;font-size:9pt;padding:0;margin:0;w......
  • 6312: 河中跳房子 二分
    描述 每年奶牛们都要举办各种特殊版本的跳房子比赛,包括在河里从一个岩石跳到另一个岩石。这项激动人心的活动在一条长长的笔直河道中进行,在起点和离起点L远(1≤L≤1,000,000,000)的终点处均有一个岩石。在起点和终点之间,有N(0≤N≤50,000)个岩石,每个岩石与起点的距......
  • 6307: 网线主管 二分/分治
    描述 仙境的居民们决定举办一场程序设计区域赛。裁判委员会完全由自愿组成,他们承诺要组织一次史上最公正的比赛。他们决定将选手的电脑用星形拓扑结构连接在一起,即将它们全部连到一个单一的中心服务器。为了组织这个完全公正的比赛,裁判委员会主席提出要将所有选手的电脑等距离......
  • 质谱数据,二分类,bp神经网络
    importnumpyasnpimportpandasaspdfromsklearn.model_selectionimporttrain_test_splitdata=pd.read_pickle('ICC_rms.pkl')df=pd.DataFrame(data)X=df.iloc[:,0:510].values#所有样本的x值,0-510列矩阵(1544,510)由此得出样本个数1544个,特征510y=df.iloc[:,5......
  • 二分法查找目标元素在数组中的索引
    /***给定一个n个元素有序的(升序)整型数组nums和一个目标值target,写一个函数搜索nums中的target,*如果目标值存在返回下标,否则返回-1。*输入:nums=[-1,0,3,5,9,12],target=9*输出:4*解释:9出现在nums中并且下标为4......