• 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;
    }
  • 相关阅读:
    Spring RestController @RequestParam 中的 required=false 参数
    unity中动画状态机(Animator)介绍
    unity音效
    unity2019中播放动画循环
    unity2019自定义天空盒
    unity脚本物体移动,旋转,属性可见性
    选择排序
    es 深度分页查询
    windows关闭防火墙和病毒程序软件步骤
    信息整理
  • 原文地址:https://www.cnblogs.com/tianmin123/p/4642726.html
Copyright © 2020-2023  润新知