CF847L Berland SU Computer Network
Description
In the computer network of the Berland State University there are $ n $ routers numbered from $ 1 $ to $ n $ . Some pairs of routers are connected by patch cords. Information can be transmitted over patch cords in both direction. The network is arranged in such a way that communication between any two routers (directly or through other routers) is possible. There are no cycles in the network, so there is only one path between each pair of routers over patch cords.
Unfortunately, the exact topology of the network was lost by administrators. In order to restore it, the following auxiliary information was collected.
For each patch cord $ p $ , directly connected to the router $ i $ , list of routers located behind the patch cord $ p $ relatively $ i $ is known. In other words, all routers path from which to the router $ i $ goes through $ p $ are known. So for each router $ i $ there are $ k_{i} $ lists, where $ k_{i} $ is the number of patch cords connected to $ i $ .
For example, let the network consists of three routers connected in chain $ 1-2-3 $ . Then:
- the router $ 1 $ : for the single patch cord connected to the first router there is a single list containing two routers: $ 2 $ and $ 3 $ ;
- the router $ 2 $ : for each of the patch cords connected to the second router there is a list: one list contains the router $ 1 $ and the other — the router $ 3 $ ;
- the router $ 3 $ : for the single patch cord connected to the third router there is a single list containing two routers: $ 1 $ and $ 2 $ .
Your task is to help administrators to restore the network topology, i. e. to identify all pairs of routers directly connected by a patch cord.
Input Format
The first line contains a single integer $ n $ ( $ 2
Output Format
Print -1 if no solution exists.
In the other case print to the first line $ n-1 $ — the total number of patch cords in the network. In each of the following $ n-1 $ lines print two integers — the routers which are directly connected by a patch cord. Information about each patch cord must be printed exactly once.
Patch cords and routers can be printed in arbitrary order.
Explanation/Hint
The first example is analyzed in the statement.
The answer to the second example is shown on the picture.
The first router has one list, which contains all other routers. The second router has three lists: the first — the single router $ 4 $ , the second — the single router $ 1 $ , the third — two routers $ 3 $ and $ 5 $ . The third router has one list, which contains all other routers. The fourth router also has one list, which contains all other routers. The fifth router has two lists: the first — the single router $ 3 $ , the second — three routers $ 1 $ , $ 2 $ and $ 4 $ .