#Lutece3353. A Boring Game
A Boring Game
Description
GuapiStarOier hates junk advertisements.
One day GuapiStarOier sees a junk advertisement about a boring game. However, he comes up with a simple idea.
The game has a tower with floors and each floor with an enemy. The strength of the enemy in -th floor is and the experience the player can get is , and the player's goal is to defeat all enemies. If the player is on the -th floor, he can move to -th or -th floor (if it exists).
Every time he moves to a new floor that he never visited before, he will fight against the enemy on this floor. Assume the strength of the player is , the strength of the enemy is and the experience is , if , the player defeats the enemy and his strength becomes , otherwise the player loses the game.
There are rounds, and in each round the player will initially be on a certain floor with strength (also he has to fight against the enemy on that floor initially). GuapiStarOier wonders about the maximal strength he can get during the game in each round. Since this problem is too easy for him, GuapiStarOier gives it to you and asks you to solve it.
Input
The first line contains a single integer (), denoting the number of test cases.
For each test case, the first line contains two integers (, ), indicating the number of floors and the number of queries.
Each of the following lines contains two integers (), denoting the strength of the enemy and the experience the play can get.
Each of the following lines contains two integers (), denoting the query in which the player is on the floor with strength .
It is guaranteed that the sum of and over all test cases won't exceed .
Output
For each query, output an integer denoting the maximal strength the player can get.
Samples
2
6 5
3 6
1 2
9 10
2 2
7 1
4 2
2 1
3 1
3 9
4 5
6 4
6 5
3 6
1 2
13 10
2 2
7 1
4 3
2 1
3 1
3 9
4 5
6 4
24
1
32
28
6
9
1
9
11
10
Resources
The 21st UESTC Programming Contest Preliminary