POJ 1434 二分

简介:

题意:给出离地高度b,和水箱的长宽高,给出水的容积,问装完水有多高。

二分高度,裸二分。

#include <iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
struct cistern
{
    double b,h,w,d;
} data[50005];
int n,t;
double getans(double h)
{
    double sum=0;
    for(int i=0; i<n; i++)
        if(h>data[i].b)
            sum+=h>data[i].b+data[i].h?data[i].h*data[i].w*data[i].d:data[i].w*data[i].d*(h-data[i].b);
    return sum;
}
int main()
{
    double sum,ans,h;
    scanf("%d",&t);
    while(t--)
    {
        sum=h=0;
        scanf("%d",&n);
        for(int i=0; i<n; i++)
            scanf("%lf%lf%lf%lf",&data[i].b,&data[i].h,&data[i].w,&data[i].d),
            sum+=data[i].h*data[i].w*data[i].d,
                 h=max(h,data[i].b+data[i].h);
        scanf("%lf",&ans);
        if(ans>sum)
        {
            puts("OVERFLOW");
            continue;
        }
        double l=0,r=h,mid;
        while(l<=r)
        {
            mid=(l+r)/2.0;
            double x1=getans(mid),x2=getans(mid-1e-4);
            if(x1>=ans&&x2<ans)
                break;
            else if(x1<ans)
                l=mid+1e-4;
            else
                r=mid-1e-4;
        }
        printf("%.2f\n",mid);
    }
    return 0;
}


目录
相关文章
poj 1990 MooFest 树状数组
题意就是有N头牛,每头牛都有一个坐标和声调值(x, v),两头牛之间通讯要花费的能量是他们的距离乘以最大的一个音调值,现在要任意两头牛之间都相互通讯一次,求总共需要花费多少能量?
47 0
|
人机交互
POJ-2524,Ubiquitous Religions(并查集模板题)
POJ-2524,Ubiquitous Religions(并查集模板题)
|
人工智能 网络架构
|
人工智能 C++
|
文件存储
poj 2229 Sumsets 【动态规划】
点击打开题目 Sumsets Time Limit: 2000MS   Memory Limit: 200000K Total Submissions: 13291   Accepted: 5324 Description Far...
923 0
|
机器学习/深度学习
【OJ】贪心法 Saruman&#39;s Army POJ 3069 /acmclub 12132
题目链接:点击打开链接 /* 6 10 贪心法Saruman's Army POJ 3069 1 7 15 20 30 50 ans=3 */ #include #include using namespace std; int x[1010]; int main(){ // freopen("贪心法 Saruman's Army poj3069.
844 0
|
机器学习/深度学习
【OJ】贪心法 Saruman's Army POJ 3069 /acmclub 12132
题目链接:点击打开链接 /* 6 10 贪心法Saruman's Army POJ 3069 1 7 15 20 30 50 ans=3 */ #include #include using namespace std; int x[1010]; ...
883 0
线段树-poj-2823
Sliding Window Description An array of size n ≤ 106 is given to you. There is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k
1079 0