#P7087. [NWRRC 2013] Intellectual Property
[NWRRC 2013] Intellectual Property
题目描述
Erast Kopi is famous Sudoku puzzle designer. Resounding success of his puzzle compilations caused a number of imitations and plagiarisms. Prior to sending a lawsuit he decided to get more evidence.
Sudoku puzzle is a table , divided into subtables of cells each. Each cell may contain a digit from to . The task is to fill empty cells with digits in a way that each row, each column and each of the subtables contains each digit from to exactly once.
Kopi has a database of Sudoku puzzles and he wants to check if it contains similar puzzles. The puzzle is similar to the puzzle , if it is possible to transform the puzzle into the puzzle using a sequence of the following operations:
choose two digits and and replace all digits with and vice versa;
swap two triples of rows: ;
swap two rows in one triple of rows;
swap two triples of columns: ;
swap two columns in one triple of columns;
flip along top-left -- bottom-right axis. After this operation columns become rows and vice versa.

Help Kopi to find similar puzzles in his database.
输入格式
The first line of the input contains single integer -- the number of puzzles in the database .
The rest of the input contains description of puzzles: , . . . , Pn. Each puzzle is described by nine lines that contain nine characters each. Each character is either a digit from to , or a dot denoting an empty cell. An empty line separates consecutive puzzles in the database.
There are no spaces in the input file.
The puzzles are not guaranteed to be solvable.
输出格式
Check if the puzzle is similar to puzzles , P3 , . . . , (in this order), than check if the puzzle is similar to puzzles P3 , P4 , . . . , (in this order) and so on.
If the puzzle is similar to the puzzle output Yes, otherwise output No. If the answer is positive, the next line should contain an integer qij -- the number of operations required to transform the puzzle to the puzzle . The number of operations is not required to be minimal, however it must not exceed . In the following qij lines write the operations that transform the puzzle to the puzzle , one per line.
Operations are encoded in the following way:
D $x$ y for swapping digits and ;
R a b for swapping triples of rows (3a , 3a and (3b , 3b
r a b for swapping rows a and , rows must belong to same triple of rows;
C a b for swapping triples of columns (3a , 3a and (3b , 3b
c a b for swapping columns a and , columns must belong to same triple of columns;
F for flipping along top-left -- bottom-right axis.
The columns are numbered from left to right and the rows are numbered from top to bottom as they are given in the input file, starting from one.
4
.....1...
1........
.2.....8.
.........
8....9...
.........
....7....
...2...1.
2...4....
....2....
...7.4...
8.......9
.8...2..1
..2......
.........
.........
..1.8....
.........
1........
.........
.........
.........
.........
.........
.........
.........
.........
.....1...
1........
.2.....8.
.........
8....9...
.........
....7....
...2...1.
2...4....
Yes
7
C 1 2
D 5 3
F
r 7 9
c 6 5
C 2 3
D 1 8
No
Yes
0
No
Yes
8
R 1 2
C 2 3
c 4 5
F
r 5 6
c 7 9
D 1 8
D 3 5
No
提示
Time limit: 2 s, Memory limit: 256 MB.