记录编号 278581 评测结果 AAAAAAAAAA
题目名称 砍树 最终得分 100
用户昵称 GravatarHzoi_ 是否通过 通过
代码语言 C++ 运行时间 0.276 s
提交时间 2016-07-08 11:21:01 内存使用 2.05 MiB
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
namespace mine{
	inline int getint(){
		static int __c,__x;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline long long getll(){
		static long long __x;
		static char __c;
		static bool __neg;
		__x=0;
		__neg=false;
		do __c=getchar();while(__c==' '||__c=='\n'||__c=='\r'||__c=='\t');
		if(__c=='-'){
			__neg=true;
			__c=getchar();
		}
		for(;__c>='0'&&__c<='9';__c=getchar())__x=__x*10+(__c^48);
		if(__neg)return -__x;
		return __x;
	}
	inline void putint(int __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
	inline void putll(long long __x){
		static int __a[40],__i,__j;
		static bool __neg;
		__neg=__x<0;
		if(__neg)__x=-__x;
		__i=0;
		do{
			__a[__i++]=__x%10+48;
			__x/=10;
		}while(__x);
		if(__neg)putchar('-');
		for(__j=__i-1;__j^-1;__j--)putchar(__a[__j]);
	}
}
using namespace mine;
const int maxn=1000100;
int n,a[maxn],l,r=0,ans,i;
long long tmp,m;
inline int MAIN(){
#define MINE
#ifdef MINE
	freopen("eko.in","r",stdin);
	freopen("eko.out","w",stdout);
#endif
	n=getint();
	m=getll();
	for(i=1;i<=n;i++){
		a[i]=getint();
		if(a[i]>r)r=a[i];
	}
	l=0;
	while(l<=r){
		ans=(l+r)>>1;
		tmp=0;
		for(i=1;i<=n;i++)if(a[i]>ans)tmp+=a[i]-ans;
		if(tmp>=m)l=ans+1;
		else r=ans-1;
	}
	putint(r);
	return 0;
}
int main(){;}
int haha=MAIN();