标签:des style color os io java ar strong 数据
2 3 4 1 1 5 5 4 3 2 1
No YesPlease use function scanfHintHint
水题,采用基本的抽屉远离即可。(PS.一开始居然还不会做,刷题太少哈)
抽屉原理,即用数量最多排成一列,然后用剩余的当做隔板来观察是否可以实现。
蔽日第一例,4 1 1 假设分别为 A B C则为A B A C A A 应为出现了AA故不满足,输出No.
代码:
#include <cstdio> int main(){ int T, n, temp,max; long long sum; scanf("%d", &T); while (T--){ temp = sum = max=0; scanf("%d", &n); while (n--){ scanf("%d", &temp); if (max < temp) max = temp; sum += temp; } if (sum - max >= max - 1) printf("Yes\n"); else printf("No\n"); } return 0; }
No YesPlease use function scanfHintHint
标签:des style color os io java ar strong 数据
原文地址:http://blog.csdn.net/zhuangjingyang/article/details/39125273