There is a one-dimensional garden of length 'N'. On each of the positions from 0 to 'N', there is a fountain, and this fountain’s water can reach up to a certain range as explained further. In other words, there are 'N' + 1 fountains located at positions 0, 1, 2, 3, …. 'N' which can be activated in the garden.
You are given an integer 'N' and an array/list 'ARR' of length 'N' + 1, where each index of the array denotes the coverage limit of a particular fountain.
A fountain at index 'i' can water the area ranging from the position 'i' - 'ARR'['i'] to 'i' + 'ARR'['i'].
Your task is to find the minimum number of fountains that have to be activated such that the whole garden from position 0 to 'N' has access to the water from at least some fountain.
Note:
1. 0-based indexing is used in the array.
2. We only care about the garden from 0 to 'N' only. So if i - 'ARR'['i'] < 0 or i + 'ARR'['i'] > 'N', you may ignore the exceeding area.
3. If some fountain covers the garden from position 'A' to position 'B', it means that the water from this fountain will spread to the whole line segment with endpoints 'A' and 'B'.
The first line of the input contains an integer 'T', denoting the number of test cases.
The first line of each test case contains the integer 'N', denoting the size of the garden.
The second line of each test case contains 'N' + 1 space-separated integers denoting the array elements.
Output Format:
For each test case, print a single integer that corresponds to the minimum number of fountains to be activated.
Note :
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= 'T' <= 50
1 <= 'N' <= 10^4
1 <= 'ARR'[i] <= 'N'
Where 'ARR[i]' represents the elements at 'i'th index.
Time Limit: 1 sec
2
2
1 2 1
4
2 1 2 1 1
1
1

For the first test case, as shown in the figure,
Fountain at i = 0 can cover area from (-1,1).
Fountain at i = 1 can cover area from (-1, 3).
Fountain at i = 2 can cover the area from (1, 3).
So if we activate the fountain on index = 1, we will be able to cover the whole garden.
For the second test case, we can just activate the fountain on index 2 as it will cover all the positions from 0 to 4
1
4
2 1 1 2 1
2
We can activate the fountains on index 0 and 3 to cover the whole garden.
Think of sorting and implementing dp.
O(N ^ 2), where ‘N’ is the size of the array.
Since we nesting two loops that go till ‘N’, Hence time complexity is O(N ^ 2).
O(N), where ‘N’ is the size of the array.
Since we are using extra space to store elements in the array.