码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 3122-Pie(二分+精度)

时间:2017-04-20 21:25:37      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:输出   else   amp   include   div   math.h   const   scanf   string   

题目地址:POJ 3122

题意:给出n个pie的直径。有F+1个人,假设给每人分的大小同样(形状能够不同),每一个人能够分多少。要求是分出来的每一份必须出自同一个pi(既当pie大小为3。2,1,仅仅能分出两个大小为2的份,剩下两个要扔掉。)

思路:对每个人分的大小进行二分。

注意讲pi放在最后成。能够提高精度。

Ps:wa了5发。不知道错在哪,然后把输出的%lf改成%f就A了,并不知道为什么。。。sad

#include <stdio.h>
#include <math.h>
#include <string.h>
#include <stdlib.h>
#include <iostream>
#include <sstream>
#include <algorithm>
#include <set>
#include <queue>
#include <stack>
#include <map>
using namespace std;
typedef long long LL;
const int inf=0x3f3f3f3f;
const double pi= acos(-1.0);
const double esp=1e-6;
const int maxn=10010;
double a[maxn];
int main()
{
    int T,n,F;
    scanf("%d",&T);
    while(T--){
        double low=0,high=0;
        scanf("%d %d",&n,&F);
        F+=1;
        for(int i=0;i<n;i++){
            scanf("%lf",&a[i]);
            a[i]=a[i]*a[i];
            high=max(high,a[i]);
        }

        double mid;
        int cnt;
        while(high-low>esp){
            cnt=0;
            mid=(low+high)/2;
            for(int i=0;i<n;i++)
                cnt+=(int)(a[i]/mid);
            if(cnt>=F){
                low=mid;
            }
            else
                high=mid;
        }
        printf("%.4f\n",mid*pi);

    }
    return 0;
}




POJ 3122-Pie(二分+精度)

标签:输出   else   amp   include   div   math.h   const   scanf   string   

原文地址:http://www.cnblogs.com/gccbuaa/p/6740478.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!