博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
codeforces-1201 B Zero Array
阅读量:5232 次
发布时间:2019-06-14

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

1 #include 
2 #define _for(i,a,b) for(int i = (a);i < b;i ++) 3 typedef long long ll; 4 using namespace std; 5 inline ll read() 6 { 7 ll ans = 0; 8 char ch = getchar(), last = ' '; 9 while(!isdigit(ch)) last = ch, ch = getchar();10 while(isdigit(ch)) ans = (ans << 1) + (ans << 3) + ch - '0', ch = getchar();11 if(last == '-') ans = -ans;12 return ans;13 }14 inline void write(ll x)15 {16 if(x < 0) x = -x, putchar('-');17 if(x >= 10) write(x / 10);18 putchar(x % 10 + '0');19 }20 int n; 21 int a[100003];22 int main()23 {24 n = read();25 _for(i,0,n)26 a[i] = read();27 28 sort(a,a+n);29 bool flag = true;30 ll rnt2 = 0;31 _for(i,0,n)32 rnt2 += a[i];33 if(rnt2&0x1 || a[n-1]*2>rnt2)34 flag = false;35 36 if(flag)37 printf("YES");38 else39 printf("NO");40 return 0;41 }

数学题,总和为偶数且最大的数不到总和的一半就输出YES

转载于:https://www.cnblogs.com/Asurudo/p/11301390.html

你可能感兴趣的文章
golang lua使用示例
查看>>
64位win2003/win2008系统IIS6.0/7.5配置PHP的方法
查看>>
5月深度学习班第3课梯度下降法与反向传播
查看>>
bzoj2783 [JLOI2012]树
查看>>
C语言第一次博客作业——输入输出格式
查看>>
使用Apache的.htaccess就可以防盗链
查看>>
iptables之NAT端口转发设置
查看>>
php遍历时修改 传地址
查看>>
python编码小记
查看>>
内存溢出和内存泄漏
查看>>
HDU2063(二分图最大匹配)
查看>>
[剑指offer] 38. 二叉树的深度
查看>>
[leetcode]278. First Bad Version首个坏版本
查看>>
[leetcode]71. Simplify Path简化路径
查看>>
【转】 vxWorks下常用的几种延时方法
查看>>
Node.js 的Web 应用 文件处理
查看>>
js实现CkeckBox全选与反选
查看>>
使用Maven构建Android项目
查看>>
MySQL中exists与in的使用
查看>>
Struts2之Result详解
查看>>