牛客练习赛38 -- 出题人的RP值
原创
©著作权归作者所有:来自51CTO博客作者不想悲伤到天明的原创作品,请联系作者获取转载授权,否则将追究法律责任
链接: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值
输出描述:
示例1
输入
复制
输出
复制
备注:
数据范围:
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 ;
}