#P871E. Restore the Tree
Restore the Tree
No submission language available for this problem.
Description
Petya had a tree consisting of n vertices numbered with integers from 1 to n. Accidentally he lost his tree.
Petya remembers information about k vertices: distances from each of them to each of the n tree vertices.
Your task is to restore any tree that satisfies the information that Petya remembers or report that such tree doesn't exist.
The first line contains two integers n and k (2 ≤ n ≤ 30 000, 1 ≤ k ≤ min(200, n)) — the number of vertices in the tree and the number of vertices about which Petya remembers distance information.
The following k lines contain remembered information. The i-th line contains n integers di, 1, di, 2, ..., di, n (0 ≤ di, j ≤ n - 1), where di, j — the distance to j-th vertex from the i-th vertex that Petya remembers.
If there are no suitable trees, print -1.
In the other case, print n - 1 lines: each line should contain two vertices connected by edge in the required tree. You can print edges and vertices in an edge in any order. The tree vertices are enumerated from 1 to n.
If there are many solutions print any of them.
Input
The first line contains two integers n and k (2 ≤ n ≤ 30 000, 1 ≤ k ≤ min(200, n)) — the number of vertices in the tree and the number of vertices about which Petya remembers distance information.
The following k lines contain remembered information. The i-th line contains n integers di, 1, di, 2, ..., di, n (0 ≤ di, j ≤ n - 1), where di, j — the distance to j-th vertex from the i-th vertex that Petya remembers.
Output
If there are no suitable trees, print -1.
In the other case, print n - 1 lines: each line should contain two vertices connected by edge in the required tree. You can print edges and vertices in an edge in any order. The tree vertices are enumerated from 1 to n.
If there are many solutions print any of them.
Samples
5 2
0 1 2 3 2
2 1 0 1 2
2 1
3 2
4 3
5 2
3 1
1 2 1
-1
Note
Picture for the first sample: