吃糖果抽屉原理
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了吃糖果抽屉原理相关的知识,希望对你有一定的参考价值。
http://acm.hdu.edu.cn/showproblem.php?pid=1205
找到最多的球。俩俩不同的配对。
#include<bits/stdc++.h>
using namespace std;
typedef long long int LL;
int main(void)
{
int t; cin>>t;
while(t--)
{
LL n,x; scanf("%lld",&n);
LL sum=0,maxv=0;
for(int i=0;i<n;i++) scanf("%lld",&x),sum+=x,maxv=max(maxv,x);
LL temp=sum-maxv+1;
if(temp>=maxv) puts("Yes");
else puts("No");
}
return 0;
}
以上是关于吃糖果抽屉原理的主要内容,如果未能解决你的问题,请参考以下文章