【23.33%】【codeforces 557B】Pasha and Tea

time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
Pasha decided to invite his friends to a tea party. For that occasion, he has a large teapot with the capacity of w milliliters and 2n tea cups, each cup is for one of Pasha’s friends. The i-th cup can hold at most ai milliliters of water.

It turned out that among Pasha’s friends there are exactly n boys and exactly n girls and all of them are going to come to the tea party. To please everyone, Pasha decided to pour the water for the tea as follows:

Pasha can boil the teapot exactly once by pouring there at most w milliliters of water;
Pasha pours the same amount of water to each girl;
Pasha pours the same amount of water to each boy;
if each girl gets x milliliters of water, then each boy gets 2x milliliters of water.
In the other words, each boy should get two times more water than each girl does.

Pasha is very kind and polite, so he wants to maximize the total amount of the water that he pours to his friends. Your task is to help him and determine the optimum distribution of cups between Pasha’s friends.

Input
The first line of the input contains two integers, n and w (1 ≤ n ≤ 105, 1 ≤ w ≤ 109) — the number of Pasha’s friends that are boys (equal to the number of Pasha’s friends that are girls) and the capacity of Pasha’s teapot in milliliters.

The second line of the input contains the sequence of integers ai (1 ≤ ai ≤ 109, 1 ≤ i ≤ 2n) — the capacities of Pasha’s tea cups in milliliters.

Output
Print a single real number — the maximum total amount of water in milliliters that Pasha can pour to his friends without violating the given conditions. Your answer will be considered correct if its absolute or relative error doesn’t exceed 10 - 6.

Examples
input
2 4
1 1 1 1
output
3
input
3 18
4 4 4 2 2 2
output
18
input
1 5
2 3
output
4.5
Note
Pasha also has candies that he is going to give to girls but that is another task…

【题目链接】:http://codeforces.com/contest/557/problem/B

【题解】

如果总的茶的体积tt确定了;
设每个女孩的杯子中水的体积为x
则x*n+2*x*n=tt
则x=tt/(3*n;
则二分tt可以快速获取x,判断大于等于x的杯子个数是不是2*n,大于等于2*x的杯子个数是不是n;
是的话就增大茶体积否则减小;

【完整代码】

#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define pb push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%I64d",&x)
#define pri(x) printf("%d",x)
#define prl(x) printf("%I64d",x)
typedef pair<int,int> pii;
typedef pair<LL,LL> pll;

const int MAXN = 2e5+100;
const int dx[9] = {0,1,-1,0,0,-1,-1,1,1};
const int dy[9] = {0,0,0,-1,1,-1,1,-1,1};
const double pi = acos(-1.0);

int n,tw;
int a[MAXN];
double w;

bool ok(double tt)
{
    double tn = n;
    double x = tt/(tn*(3.0));
    int n1 = 0,n2 = 0;
    rep1(i,1,2*n)
        if (a[i]>=x)
            n1++;
    if (n1<2*n) return false;
    double tempx = x*2;
    rep1(i,1,2*n)
        if (a[i]>=tempx)
            n2++;
    if (n2<n) return false;
    return true;
}

int main()
{
    //freopen("F:\rush.txt","r",stdin);
    rei(n);rei(tw);
    w = tw;
    rep1(i,1,2*n)
        rei(a[i]);
    double l = 0,r = w,ans1=0;
    while (abs(r-l)>=1e-6)
    {
        double m = (l+r)/2.0;
        if (ok(m))
            {
                l = m;
                ans1 = m;
            }
        else
            r = m;
    }
    printf("%.6lf
",ans1);
    return 0;
}
原文地址:https://www.cnblogs.com/AWCXV/p/7626841.html