시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 128 MB51120.000%

문제

Figure 1 Figure 2

A puzzle adapted from a 2007 Games Magazine consists of a collection of hexagonal tiles packed together with each tile showing a letter.  A bouncing path in the grid is a continuous path, using no tile more than once, starting in the top row, including at least one tile in the bottom row, and ending in the top row to the right of the starting tile.  Continuous means that the next tile in a path always shares an edge with the previous tile.

Each bouncing path defines a sequence of letters.  The sequence of letters for the path shown in Figure 1 is BCBCBC.  Note that this is just BC repeated three times.  We say a path has a repetitive pattern of length n if the whole sequence is composed of two or more copies of the first n letters concatenated together.  Figure 2 shows a repetitive pattern of length four:  the pattern BCBD repeated twice.  Your task is to find bouncing paths with a repetitive pattern of a given length. 

In each grid the odd numbered rows will have the same number of tiles as the first row.  The even numbered rows will each have one more tile, with the ends offset to extend past the odd rows on both the left and the right. 

입력

The input will consist of one to twelve data sets, followed by a line containing only 0.  

The first line of a data set contains blank separated integers r c n , where r is the number of rows in the hex pattern (2 ≤ r ≤ 7), c is the number of entries in the odd numbered rows, (2 ≤ c ≤ 7), and n is the required pattern length (2 ≤ n ≤  5).  The next r lines contain the capital letters on the hex tiles, one row per line.  All hex tile characters for a row are blank separated.  The lines for odd numbered rows also start with a blank, to better simulate the way the hexagons fit together.  

출력

There is one line of output for each data set.  If there is a bouncing path with pattern length n, then output the pattern for the shortest possible path.  If there is no such path, output the phrase: no solution.  The data sets have been chosen such that the shortest solution path is unique, if one exists.

예제 입력 1

3 3 2
 B D C
C E B G
 B C B
3 5 4
 A B E B D
A C D C A D
 D B B B C
3 3 4
 B D C
C E B G
 B C B
3 4 4
 B D H C
C E F G B
 B C B C
0

예제 출력 1

BCBCBC
BCBDBCBD
no solution
BCBCBCBC