309304: CF1660B. Vlad and Candies
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:41
Solved:0
Description
Vlad and Candies
题意翻译
共有 $t$ 组数据,对于每一组数据,给定一个 $n$ 和一个元素个数为 $n$ 的数列 $A$。其中 $n$ 为糖的种类数,$A_i$ 为第 $i$ 个种类糖的个数。有一个人一次只吃一颗糖,这颗糖是当前最多的那个种类里的一颗,他不希望有连续两次同时吃同一种类里的糖,请问他能否做到,能就输出 $YES$,否则输出 $NO$。题目描述
Not so long ago, Vlad had a birthday, for which he was presented with a package of candies. There were $ n $ types of candies, there are $ a_i $ candies of the type $ i $ ( $ 1 \le i \le n $ ). Vlad decided to eat exactly one candy every time, choosing any of the candies of a type that is currently the most frequent (if there are several such types, he can choose any of them). To get the maximum pleasure from eating, Vlad does not want to eat two candies of the same type in a row. Help him figure out if he can eat all the candies without eating two identical candies in a row.输入输出格式
输入格式
The first line of input data contains an integer $ t $ ( $ 1 \le t \le 10^4 $ ) — the number of input test cases. The following is a description of $ t $ test cases of input, two lines for each. The first line of the case contains the single number $ n $ ( $ 1 \le n \le 2 \cdot 10^5 $ ) — the number of types of candies in the package. The second line of the case contains $ n $ integers $ a_i $ ( $ 1 \le a_i \le 10^9 $ ) — the number of candies of the type $ i $ . It is guaranteed that the sum of $ n $ for all cases does not exceed $ 2 \cdot 10^5 $ .
输出格式
Output $ t $ lines, each of which contains the answer to the corresponding test case of input. As an answer, output "YES" if Vlad can eat candy as planned, and "NO" otherwise. You can output the answer in any case (for example, the strings "yEs", "yes", "Yes" and "YES" will be recognized as a positive answer).
输入输出样例
输入样例 #1
6
2
2 3
1
2
5
1 6 2 4 3
4
2 2 2 1
3
1 1000000000 999999999
1
1
输出样例 #1
YES
NO
NO
YES
YES
YES