#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 11 unit to NN units. Now he tries to label them with 11 to NN in such a way that:

  1. No two balls share the same label.
  2. 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, N(1N200)N (1 \leq N \leq 200) and M(0M40,000)M (0 \leq M \leq 40,000). The next MM line each contain two integers aa and bb indicating the ball labeled with a must be lighter than the one labeled with b.(1a,bN)b. (1 \leq a, b \leq N) There is a blank line before each test case.

Output

For each test case output on a single line the balls' weights from label 11 to label NN. If several solutions exist, you should output the one with the smallest weight for label 11, then with the smallest weight for label 22, then with the smallest weight for label 33 and so on \cdots 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