ACMT - Acm Teams

no tags 

Engineer Ahmed Sror one of the best coaches. He picks team members by using two ways.

First one that the optimal team of three people should consist of one experienced participant and two newbies. Thus, each experienced participant can share the experience with a large number of people.

Second one that the optimal team should have two experienced members plus one newbie. Thus, each newbie can gain more knowledge and experience.

All the teams during the training session should belong to one of the two ways described above. Furthermore, they agree that the total number of teams should be as high as possible.

There are E experienced members and N newbies on the training session. Can you calculate what maximum number of teams can be formed?

Input

The first line of the input contains a single integer corresponding to number of test cases t (1 ≤ t ≤ 10) ,The second line contains two integers E and N (0 ≤ E, N ≤ 5·105) — the number of experienced participants and newbies that are present at the training session.

Output

For each test case print a single integer representing the maximum number of teams that can be formed.

Example

Input:
2
2 6
4 5

Output:
2
3

Note Let's represent the experienced players as XP and newbies as NB.

In the first test the teams look as follows: (XP, NB, NB), (XP, NB, NB).
In the second test sample the teams look as follows: (XP, NB, NB), (XP, NB, NB), (XP, XP, NB).


hide comments
Dhruv Mullick: 2015-06-21 09:30:05

Simple greedy

r0bo_dart: 2015-06-13 16:19:55

Hint: Its not DP, nor its recursive. Its pure logic and some equation solving capability.

RIVU DAS: 2015-05-08 06:29:27

Wasn't this ques sent to the Tutorial section??


Added by:atef
Date:2015-04-23
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64