CF BUDDY
← Problems·

1291B · Array Sharpening

1300 · greedy, implementation

Problem: You're given an array a1,,ana_1, \ldots, a_n of nn non-negative integers.

Let's call it sharpened if and only if there exists an integer 1kn1 \le k \le n such that a1<a2<<aka_1 < a_2 < \ldots < a_k and ak>ak+1>>ana_k > a_{k+1} > \ldots > a_n. In particular, any strictly increasing or strictly decreasing array is sharpened. For example:

  • The arrays [4][4], [0,1][0, 1], [12,10,8][12, 10, 8] and [3,11,15,9,7,4][3, 11, 15, 9, 7, 4] are sharpened;
  • The arrays [2,8,2,8,6,5][2, 8, 2, 8, 6, 5], [0,1,1,0][0, 1, 1, 0] and [2,5,6,9,8,8][2, 5, 6, 9, 8, 8] are not sharpened.

You can do the following operation as many times as you want: choose any strictly positive element of the array, and decrease it by one. Formally, you can choose any ii (1in1 \le i \le n) such that ai>0a_i>0 and assign ai:=ai1a_i := a_i - 1.

Tell if it's possible to make the given array sharpened using some number (possibly zero) of these operations.

Input Format: The input consists of multiple test cases. The first line contains a single integer tt (1t15 0001 \le t \le 15\ 000)  — the number of test cases. The description of the test cases follows.

The first line of each test case contains a single integer nn (1n31051 \le n \le 3 \cdot 10^5).

The second line of each test case contains a sequence of nn non-negative integers a1,,ana_1, \ldots, a_n (0ai1090 \le a_i \le 10^9).

It is guaranteed that the sum of nn over all test cases does not exceed 31053 \cdot 10^5.

Output Format: For each test case, output a single line containing "Yes" (without quotes) if it's possible to make the given array sharpened using the described operations, or "No" (without quotes) otherwise.

Note: In the first and the second test case of the first test, the given array is already sharpened.

In the third test case of the first test, we can transform the array into [3,11,15,9,7,4][3, 11, 15, 9, 7, 4] (decrease the first element 9797 times and decrease the last element 44 times). It is sharpened because 3<11<153 < 11 < 15 and 15>9>7>415 > 9 > 7 > 4.

In the fourth test case of the first test, it's impossible to make the given array sharpened.

Sample Cases

Case 1

Input

10
1
248618
3
12 10 8
6
100 11 15 9 7 8
4
0 1 1 0
2
0 0
2
0 1
2
1 0
2
1 1
3
0 1 0
3
1 0 1

Output

Yes
Yes
Yes
No
No
Yes
Yes
Yes
Yes
No

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback