zoukankan      html  css  js  c++  java
  • CF-Pasha and Tea(贪心6)

    Description

    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.

    Sample Input

    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

    Hint

    Pasha also has candies that he is going to give to girls but that is another task...

    //贪心先想最优结果 所有女生倒女生最小杯,所以男生倒男生最小杯
    #include <stdio.h>
    #include <algorithm>
    using namespace std;
    int main()
    {
        int n,w,a[200010];
        double p;
        while(scanf("%d%d",&n,&w)!=EOF)
        {
            for(int i=0; i<2*n; i++)
            {
                scanf("%d",&a[i]);
            }
            sort(a,a+2*n);
            if(a[0]>a[n]/2)//当女生最小杯大于男生最小杯的一半
                p=a[n]/2.0;//以男生最小杯为参照 
            else
                p=a[0]*1.0;//否则以女生为参照
            if(p*3*n>w)
                printf("%d
    ",w);//若超过总量
            else
                printf("%lf
    ",p*3*n);//总数
    
        }
        return 0;
    }
  • 相关阅读:
    扩充Visual Studio 功能
    如何分层啊?
    DirectXInput
    关于分享
    消息机制
    C# 开启一个新进程,IE,打开一个URL,第一次总失败,刷新一下就好了
    远程调试IIS服务器的ASP.NET2.0网站
    IIS 用户 NT AUTHORITY\NETWORK SERVICE 登录失败解决方法
    SharePoint 2010微软Technet讲座第一讲笔记(2011年3月9日发布)
    IIS 未能加载文件或程序集 system.web.extensions解决方法
  • 原文地址:https://www.cnblogs.com/tianmin123/p/4642726.html
Copyright © 2011-2022 走看看