시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB333100.000%

문제

Peter decided to lay a parquet in the room of size $n \times m$, the parquet consists of tiles of size $1 \times 2$. When the workers laid the parquet, it became clear that the tiles pattern looks not like Peter likes, and workers will have to re-lay it.

The workers decided that removing entire parquet and then laying it again is very difficult task, so they decided to make such an operation every hour: remove two tiles, which form a $2 \times 2$ square, rotate them 90 degrees and put them back on the same place.

They have no idea how to obtain the desired configuration using these operations, and whether it is possible at all.

Help Peter to make a plan for the workers or tell that it is impossible. The plan should contain at most $100\,000$ commands.

입력

The first line contains integer $n$ and $m$, size of the room ($1 \le n, m \le 50$).

The following $n$ lines contain $m$ characters each, the description of the current configuration of the parquet tiles. Each character represents the position of the half-tile. Characters 'L', 'R', 'U' and 'D' correspond to the left, right, upper and lower halves, respectively.

The following $n$ lines contain $m$ characters each, describing the desired configuration in the same format.

출력

In the first line output integer $k$, the number of operations. In the next $k$ lines output description of operations. The operation is specified by coordinates (row and column) of the left upper half-tile on which the operation is performed.

If there is no solution, output -1 in the first line.

서브태스크

번호배점제한
113

$n, m \le 4$

228

$n, m \le 20$

359

$n, m \le 50$

예제 입력 1

2 3
ULR
DLR
LRU
LRD

예제 출력 1

2
1 2
1 1

힌트

First operation is to rotate two rightmost tiles, after this all tiles lie vertically. Second operation is to rotate two leftmost tiles, after this we will get desired configuration.

채점 및 기타 정보

  • 예제는 채점하지 않는다.