#P1538G. Gift Set
Gift Set
No submission language available for this problem.
Description
Polycarp has of red and of blue candies. Using them, he wants to make gift sets. Each gift set contains either red candies and blue candies, or blue candies and red candies. Any candy can belong to at most one gift set.
Help Polycarp to find the largest number of gift sets he can create.
For example, if , , , and , then Polycarp can make three gift sets:
- In the first set there will be red candies and blue candies;
- In the second set there will be blue candies and red candies;
- In the third set will be blue candies and red candies.
Note that in this example there is one red candy that Polycarp does not use in any gift set.
The first line contains an integer (). Then test cases follow.
Each test case consists of a single string containing four integers , , , and ().
For each test case, output one number — the maximum number of gift sets that Polycarp can make.
Input
The first line contains an integer (). Then test cases follow.
Each test case consists of a single string containing four integers , , , and ().
Output
For each test case, output one number — the maximum number of gift sets that Polycarp can make.