문제
Authors: Nikola Dmitrović, Antun Razum
Mister No (real name Jerry Drake) is a comic book character who frequently gets himself into a lot of trouble, which he is usually able to get out of. However, this time it's not so easy. He was searching for ancient Mayan treasures and, in the process, stumbled upon a lost temple. Inside the temple there is a large hall, and inside the hall stands a stone Totem with inscriptions that are the key to understanding the purpose of life (42). However, getting to the Totem is a great challenge. The Totem is situated on the opposite side of the hall form the entrance. The floor of the hall is covered with stone tiles that bear a striking resemblance to domino tiles. Each tile is divided into two halves (squares), and each half has a number from one to six, inclusive, chiseled into it. Tiles are arranged in N rows, with N tiles in each odd-numbered row and N - 1 tiles in each even-numbered row. The image below corresponds to the first test example (N = 5):
It is only possible to step from one tile to an adjacent one if the two tiles have matching numbers on halves that share an edge. Help Mister No find the shortest path to the Totem by determining the sequence of tiles (outputting the sequence of tiles' labels, described below) that need to be stepped on, in order, from the first to the last tile on the path. If there is no possible path to the Totem, find the shortest path to the tile with the largest label (so that Mister No can make a heroic jump). The stone tiles are labelled in row-major order: in the first row, the first tile has the label 1, and the last one N; in the second row, the first tile is N + 1, and the last one 2*N - 1, and so on. The entrance leads to the tile with label 1, and the totem is on the last tile in the last row. Mister No always starts from the entrance.
입력
The first line of input contains the positive integer N (1 ≤ N ≤ 500), the number of stone tile rows. Each of the following N * N - N / 2 lines (where “/” stands for integer division) contains two positive integers Ai and Bi (1 ≤ Ai, Bi ≤ 6, 1 ≤ i ≤ N * N - N / 2), the values chiseled into the left and right halves, respectively, of tile i.
출력
The first line of output must contain the length (in tiles) of the required shortest path. The second line of output must contain a sequence of space-separated positive integers, the labels of tiles on the shortest path. As there can exist more than one shortest path, output any one of them. Authors: Nikola Dmitrović, Antun Razum
예제 입력 1
5
1 4
4 5
3 4
5 4
5 2
4 2
5 6
4 4
6 5
2 4
5 1
6 1
1 6
2 3
4 2
5 3
1 2
5 5
4 1
2 2
4 3
2 3
3 4
예제 출력 1
7
1 2 7 12 17 22 23
예제 입력 2
3
1 2
2 3
6 6
2 4
3 5
6 6
4 5
5 6
예제 출력 2
4
1 2 5 8
예제 입력 3
4
1 5
5 3
5 5
5 6
5 3
6 4
4 5
2 5
2 4
4 3
2 4
5 2
1 4
1 6
예제 출력 3
7
1 5 8 12 9 10 13
이 문제는 현재 제출할 수 없습니다.
이 현상이 잘못되었다고 생각될 경우 관리자한테 문의주세요.