Preparando MOJI

Increasing

1000ms 262144K

Description:

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 $$$a_1 < a_2 < \dots < a_n$$$ holds.

Input:

The first line contains a single integer $$$t$$$ ($$$1 \leq t \leq 100$$$) — the number of test cases.

The first line of each test case contains a single integer $$$n$$$ ($$$1 \leq n \leq 100$$$) — the length of the array.

The second line of each test case contains $$$n$$$ integers $$$a_i$$$ ($$$1 \leq a_i \leq 10^9$$$) — the elements of the array.

Output:

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).

Sample Input:

3
4
1 1 1 1
5
8 7 1 3 4
1
5

Sample Output:

NO
YES
YES

Note:

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]$$$.

Informação

Codeforces

Provedor Codeforces

Código CF1742B

Tags

greedyimplementationsortings

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 10:32:56

Relacionados

Nada ainda