链接:​​https://ac.nowcoder.com/acm/contest/358/A​​​ 来源:牛客网
 

题目描述

众所周知,每个人都有自己的rp值(是个非负实数),膜别人可以从别人身上吸取rp值。

然而当你膜别人时,别人也会来膜你,互膜一段时间后,你们就平分了两人原有的rp值,当你膜过一个人之后,你就不能再膜那个人了

出题人发现自己的rp值为x,出题人周围有n个人,第i个人的rp值为a[i]

你要选择膜哪些人和膜人的顺序,使出题人的最终rp值最大

 

输入描述:

第一行两个数n,x,人数和出题人的初始rp值
第二行n个数,第i个数a[i]表示第i个人的rp值

输出描述:

一行一个数表示出题人的最终rp值(保留三位小数)

示例1

输入

复制

1 0
1

输出

复制

0.500

备注:

数据范围:
n<=100000,a[i]<=100000,x<=100000,(a[i],x都是整数)

 核心 就是 选择膜哪些人 和 顺序 , 当然是每次膜比他大的数,顺序是每次先膜所有比他大的数中最小的 .

#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <cstring>
#include <stack>
#include <queue>
#define Swap(a,b) a ^= b ^= a ^= b
using namespace std ;
const int MAX = 100005;
const int inf = 0xffffff;
typedef long long LL;

int a[MAX] ;
bool cmp(const int &a , const int &b )
{
return a < b ;
}

int main()
{

int n , x ; // 人数和初始rp 值
cin >> n >>x ;
for(int i = 1 ; i<=n ; i++ )
{
cin >>a[i] ;
}
sort(a+1,a+1+n,cmp) ;
double ans = x ;
for(int i = 1 ; i<=n ;i++ )
{
if(ans < a[i])
{
ans = (ans + a[i]) /2 ;
}
}

printf("%.3lf",ans);


return 0 ;
}