luogu#P7087. [NWRRC2013] Intellectual Property
[NWRRC2013] 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.
题目大意
对于两个 数独谜题(不管是否有解),定义 和 等价当且仅当 可以通过下列操作进行若干次变换后成为 。
- 选择两个数字 ,将所有 变成 ,所有 变成 。
- 在 三个三元组中,选择两个,作为整体交换以它为下标的行。
- 选择在同一个三元组中的两个数 ,交换谜题的第 行和第 行。
- 在 三个三元组中,选择两个,作为整体交换以它为下标的列。
- 选择在同一个三元组中的两个数 ,交换谜题的第 列和第 列。
- 把 转置。
现在给定 个数独谜题,判断它们两两是否等价。若等价,还需要输出一种变换的方法。D x y
表示将两个数字交换,R a b
表示整体交换三元组 对应的行,r a b
表示交换两个行,同理有 C a b
和 c a b
作为列操作。F
表示取转置。
translated by @Starlight237
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.