CF1742B.Increasing
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You are given an array a of n positive integers. Determine if, by rearranging the elements, you can make the array strictly increasing. In other words, determine if it is possible to rearrange the elements such that a1<a2<⋯<an holds.
输入格式
The first line contains a single integer t ( 1≤t≤100 ) — the number of test cases.
The first line of each test case contains a single integer n ( 1≤n≤100 ) — the length of the array.
The second line of each test case contains n integers ai ( 1≤ai≤109 ) — the elements of the array.
输出格式
For each test case, output "YES" (without quotes) if the array satisfies the condition, and "NO" (without quotes) 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
3 4 1 1 1 1 5 8 7 1 3 4 1 5
输出#1
NO YES YES
说明/提示
In the first test case any rearrangement will keep the array [1,1,1,1] , which is not strictly increasing.
In the second test case, you can make the array [1,3,4,7,8] .