시간 제한메모리 제한제출정답맞힌 사람정답 비율
3 초 512 MB0000.000%

문제

Cartography is the practice of creating maps. Abbey is a cartographer who wishes to draw a map of where every house is in a particular city. Unfortunately, she has never visited that city. She knows that the city is a rectangular grid with one house at each intersection. She does not know the dimensions of the grid, but knows that each dimension is at least 2.

Abbey has access to the census results from the previous year, where each household in that city wrote down who all of their neighbours were. Your neighbours are the houses that are exactly one intersection away from you in any of the four directions (north, east, south, west). This means that each house will have exactly 2, 3 or 4 neighbours (2 if you are a corner, 3 if you are on the edge, and 4 otherwise).

Unfortunately, some of the census results may be incorrect. For example, some households may have reported the wrong person as their neighbour, some may have not reported some neighbours, some may have reported extra neighbours and some may have even put themselves as their own neighbour!

Help Abbey draw a map of the city that is consistent with all of the census results if possible. The city map is consistent if every household wrote down exactly their neighbours.

입력

The first line contains a single integer n (4 ≤ n ≤ 200), which is the number of houses in the city.

The next n lines describe the census results in order from house 1 to house n. Each of these lines starts with an integer k (2 ≤ k ≤ 4), which is the number of neighbours of this house. Then follow k distinct integers between 1 and n inclusive, which are the house numbers of the neighbours.

출력

If there is no valid map that is consistent with the input, display −1.

Otherwise, display a map of the city. The first line of a map is two integers r and c, which are dimensions of the map. Then display a grid of r ×c integers. The numbers 1 to n should appear exactly once and the map should be consistent with the input.

If there are multiple correct solutions, any one will be accepted.

예제 입력 1

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

예제 출력 1

2 2
1 3
2 4

예제 입력 2

4
2 1 2
2 1 2
2 1 2
2 1 2

예제 출력 2

-1

예제 입력 3

6
2 2 3
2 1 4
3 1 4 5
3 2 3 6
2 3 6
2 4 5

예제 출력 3

3 2
1 2
3 4
5 6

예제 입력 4

7
2 4 3
3 1 3 6
4 2 3 7 1
3 1 2 6
2 2 3
2 5 4
2 3 6

예제 출력 4

-1