In a tournament there are (N+1) players, N players have already played and their scores are denoted by an array A. Here, A1 is the score of the first player, A2 of the second, ..., AN of the Nth player.
Now, the organizers decide the ranks according to the following rules:
The player x scored more than player y, player x gets a better rank.
In case of tie, the player with lower indices gets a better rank.
Now, it is the turn of the (N+1)th player to play. Before playing, he wants to know the number of ranks that he can secure so that he can decide his strategy.
Now, the jury has some scoreboard updates. Therefore, your task is to tell the jury after every update the number of distinct possible ranks that he can get.
Input format
Output format
For each test case:
Constraints:
1≤T≤1000
1≤N,Q≤100000
1≤Ai≤1e9∀i∈[1,N]
1≤L≤N
1≤R≤1e9
The sum of N and Q in over all test cases does not exceed 100000.
After first query scoreboard will look like 2,3,1,5.
Rank will be 3,2,4,1. Now first player can acheive Ny rank from 1 to 5.
If he scores 6 he will get first rank, if he scores 5 he will rank second, if he scores 3 he will rank third, if he scores he scores 2 he will get fourth rank, if he scores 0 he will get 5th rank.