博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF-Pasha and Tea(贪心6)
阅读量:7071 次
发布时间:2019-06-28

本文共 2480 字,大约阅读时间需要 8 分钟。

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 
#include
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\n",w);//若超过总量 else printf("%lf\n",p*3*n);//总数 } return 0;}

 

转载于:https://www.cnblogs.com/tianmin123/p/4642726.html

你可能感兴趣的文章
Springboot 笔记
查看>>
自己动手实现RPC服务调用框架
查看>>
AngularJs学习笔记--bootstrap
查看>>
String 、InputStream、Reader 的转换
查看>>
block的回调作用
查看>>
如何实现类似微信朋友圈的feed功能(第一版)
查看>>
安装NODEJS的三种方法
查看>>
如何让Mac完全读写NTFS格式分区
查看>>
百万级很快的分页联合
查看>>
手机内存卡修复工具软件大师免费试用版
查看>>
获取屏蔽符号<!-- -->屏蔽的字符串的代码
查看>>
struct和typedef struct
查看>>
Notification启动Activity, 恢复任务栈
查看>>
使用Python进行并发编程
查看>>
自动机器学习简述(AutoML)
查看>>
iPhone X适配
查看>>
虚拟化笔记
查看>>
[vim]-vim基础
查看>>
JAVA 8入门(一)Lambda表达式
查看>>
resin集成eclipse开发
查看>>