#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 nn floors and each floor with an enemy. The strength of the enemy in ii-th floor is aia_i and the experience the player can get is bib_i, and the player's goal is to defeat all enemies. If the player is on the yy-th floor, he can move to (y+1)(y+1)-th or (y1)(y-1)-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 xx, the strength of the enemy is yy and the experience is zz, if xyx \geq y, the player defeats the enemy and his strength becomes x+zx+z, otherwise the player loses the game.

There are qq rounds, and in each round the player will initially be on a certain floor pp with strength vv (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 TT (1T1001\le T\le 100), denoting the number of test cases.

For each test case, the first line contains two integers n,qn,q (1n1051\le n\le 10^5, 1q1051\le q\le 10^5), indicating the number of floors and the number of queries.

Each of the following nn lines contains two integers ai,bia_i,b_i (0ai,bi10120\le a_i,b_i\le 10^{12}), denoting the strength of the enemy and the experience the play can get.

Each of the following qq lines contains two integers p,vp,v (1pn,0v10121\le p\le n,0\le v\le 10^{12}), denoting the query in which the player is on the floor pp with strength vv.

It is guaranteed that the sum of nn and qq over all test cases won't exceed 10610^6.

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