A10781 | Parquet Re-laying
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Peter decided to lay a parquet in the room of size $n×m$ , the parquet consists of tiles of size $1×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×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 $100000$ commands.
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×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 $100000$ commands.
输入格式
The first line contains integer $n$ and $m$ , size of the room ( $1<=n,m<=50$ ). At least one of them is even number.
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.
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.
If there is no solution, output -1 in the first line.
输入输出样例
输入 #1
2 3 ULR DLR LRU LRD
输出 #1
2 1 2 1 1
输入 #2
4 3 ULR DLR LRU LRD ULR DUU UDD DLR
输出 #2
3 3 1 3 2 2 2
In the first sample test 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.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted