#Lutece0888. Absurdistan Roads

Absurdistan Roads

Migrated from Lutece 888 Absurdistan Roads

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

The people of Absurdistan discovered how to build roads only last year. After the discovery, every city decided to build their own road connecting their city with another city. Each newly built road can be used in both directions.

Absurdistan is full of surprising coincidences. It took all NN cities precisely one year to build their roads. And even more surprisingly, in the end it was possible to travel from every city to every other city using the newly built roads.

You bought a tourist guide which does not have a map of the country with the new roads. It only contains a huge table with the shortest distances between all pairs of cities using the newly built roads. You would like to know between which pairs of cities there are roads and how long they are, because you want to reconstruct the map of the NN newly built roads from the table of shortest distances.

You get a table of shortest distances between all pairs of cities in Absurdistan using the NN roads built last year. From this table, you must reconstruct the road network of Absurdistan. There might be multiple road networks with NN roads with that same table of shortest distances, but you are happy with any one of those networks.

Input

For each test case:

  • A line containing an integer NN (2N2000)(2\le N\le 2000) -- the number of cities and roads.
  • NN lines with NN numbers each. The jj-th number of the ii-th line is the shortest distance from city ii to city jj. All distances between two distinct cities will be positive and at most 10000001\,000\,000. The distance from ii to ii will always be 00 and the distance from ii to jj will be the same as the distance from jj to ii.

Output

For each test case:

  • Print NN lines with three integers 'aa bb cc' denoting that there is a road between cities 1aN1 \le a \le N and 1bN1 \le b \le N of length 1c10000001 \le c \le 1\,000\,000, where aba \not = b. If there are multiple solutions, you can print any one and you can print the roads in any order. At least one solution is guaranteed to exist.

Print a blank line between every two test cases.

Samples

4
0 1 2 1
1 0 2 1
2 2 0 1
1 1 1 0
4
0 1 1 1
1 0 2 2
1 2 0 2
1 2 2 0
3
0 4 1
4 0 3
1 3 0
2 1 1
4 1 1
4 2 1
4 3 1

2 1 1
3 1 1
4 1 1
2 1 1

3 1 1
2 1 4
3 2 3

Resources

Northwestern European Regional Contest 2013