A1504.[COCI-2012_2013-olympiad]#2 ROTACIJE
普及/提高-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
The famous archaeologist Diana Jones has discovered a secret passageway leading to hidden treasure near Nowhere, Kansas. The passageway is blocked by a stone gate which has an ancient unlocking mechanism chiselled into it. Fortunately, she has immediately recognized the chiselled symbols:
- The unlocking mechanism is a table with R rows and C columns. Each cell contains a unique positive integer between 1 and R*C, inclusive. At first glance, the numbers appear to be ordered randomly.
- The mechanism contains cogwheels which Diana can use to rearrange the table cells. In one move, she can rotate any 2-by-2 group of adjacent cells clockwise by 90 degrees.
- The gate will be unlocked when the numbers are rearranged in sorted row-major order (the upper left cell must contain 1, the cell to the right of it 2, and so on until the lower right cell, which must contain R*C).
For example, for the initial arrangement shown in the first picture, two moves are sufficient to unlock the mechanism:
3 2 6 1 4 5 →
1 3 6 4 2 5 →
1 2 3 4 5 6 Write a program that, given the initial arrangement of cells, finds a sequence of moves that unlocks the mechanism. The number of moves needn't be optimal, however it must not exceed 100 00
输入格式
The first line of input contains the two positive integers R and C (2 ≤ R ≤ C ≤ 25).
Each of the following R lines contains C positive integers Zij (1 ≤ Zij ≤ R*C), the numbers chiselled into the corresponding mechanism cells, which describes the initial arrangement.
输出格式
The output must contain the required sequence of moves, one per line. For each move, output two positive integers M and N (1 ≤ M ≤ R-1, 1 ≤ N ≤ C-1) representing the row and column index of the upper left cell in the 2-by-2 group rotated in that move.
Note: For the given input data, a solution, not necessarily unique, will always exist.
输入输出样例
输入#1
2 3 3 2 6 1 4 5
输出#1
1 1 1 2
输入#2
3 3 1 2 3 4 6 9 7 5 8
输出#2
2 2
输入#3
2 4 1 2 7 3 5 6 8 4
输出#3
1 3 1 3 1 3
说明/提示
In test data worth a total of 40 points, R*C will be at most 9.
In test data worth a total of 40 points, R will be equal to 2.
In test data worth a total of 60 points, at least one of the two constraints above will hold.
Clarification of the first example: According to the picture in the problem description, the initial
arrangement can be ordered in two moves: we first rotate the group with the upper left corner in row 1
and column 1, and then the group with the upper left corner in row 1 and column 2.