CF1836A.Destroyer

传统题 时间 2000 ms 内存 256 MiB 3 尝试 1 已通过 1 标签

Destroyer

John is a lead programmer on a destroyer belonging to the space navy of the Confederacy of Independent Operating Systems. One of his tasks is checking if the electronic brains of robots were damaged during battles.

A standard test is to order the robots to form one or several lines, in each line the robots should stand one after another. After that, each robot reports the number of robots standing in front of it in its line.

An example of robots' arrangement (the front of the lines is on the left). The robots report the numbers above.

The ii-th robot reported number lil_i. Unfortunately, John does not know which line each robot stands in, and can't check the reported numbers. Please determine if it is possible to form the lines in such a way that all reported numbers are correct, or not.

Input

The first line contains a single integer tt (1t1001 \leq t \leq 100), denoting the number of test cases.

The first line in each test case contains a single integer nn (1n1001 \le n \le 100) — the number of robots.

The second line in each test case contains nn integers l1,l2,,lnl_1, l_2, \ldots, l_n (0li<1000 \leq l_i \lt 100), lil_i is equal to the number of robots in front of the ii-th robot in its line.

The sum of nn over all test cases won't exceed 200200.

Output

For each test case, output "YES", if there exists a robot arrangement consistent with robots' reports. Otherwise, output "NO".

You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.

Note

Example arrangement consistent with robot statements from the first example test case:

Example arrangement consistent with robot statements from the second example is shown in the statement.

In the third test case, the third robot claims that there are two machines in front of it. In such a case, the robot directly in front of it would have one machine in front. No robot claims that, so there is no valid arrangement.

Samples

5
6
0 1 2 0 1 0
9
0 0 0 0 1 1 1 2 2
3
0 0 2
1
99
5
0 1 2 3 4
YES
YES
NO
NO
YES

在线编程 IDE

建议全屏模式获得最佳体验