Scoreboard queries

3.6

38 votes
Problem

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

  • The first line contains the number of test cases T.
  • The first line of each test case contains two integers N and Q denoting the number of players who have already played and the number of updates by jury.
  • The second line of each test case contains N space-separated integers of array A.
  • Next Q lines of each test case contain two integers L and R denoting the score of the Lth player has changed to R.

Output format

For each test case:

  • Print Q lines denoting the number of possible ranks which (n+1)th player can get after every update.

Constraints:

1T1000

1N,Q100000

1Ai1e9i[1,N]

1LN

1R1e9

The sum of N and Q in over all test cases does not exceed 100000.

Sample Input
1
4 1
2 1 1 5
2 3
Sample Output
5
Time Limit: 2.5
Memory Limit: 256
Source Limit:
Explanation

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.

Editor Image

?