#Lutece0259. Labeling Balls
Labeling Balls
Migrated from Lutece 259 Labeling Balls
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Windy has N balls of distinct weights from unit to units. Now he tries to label them with to in such a way that:
- No two balls share the same label.
- The labeling satisfies several constrains like
The ball labeled with a is lighter than the one labeled with b
.
Can you help windy to find a solution?
Input
The first line of input is the number of test case. The first line of each test case contains two integers, and . The next line each contain two integers and indicating the ball labeled with a must be lighter than the one labeled with There is a blank line before each test case.
Output
For each test case output on a single line the balls' weights from label to label . If several solutions exist, you should output the one with the smallest weight for label , then with the smallest weight for label , then with the smallest weight for label and so on If no solution exists, output -1
instead.
Samples
5
4 0
4 1
1 1
4 2
1 2
2 1
4 1
2 1
4 1
3 2
1 2 3 4
-1
-1
2 1 3 4
1 3 2 4
Note
The data used in this problem is unofficial data prepared by allenlowesy. So any mistake here does not imply mistake in the offcial judge data.
Resources
POJ Founder Monthly Contest – 2008.08.31, win