A10422 | Theseus and labyrinth
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Theseus has just arrived to Crete to fight Minotaur. He found a labyrinth that has a form of a rectangular field of size $n×m$ and consists of blocks of size $1×1$ .
Each block of the labyrinth has a button that rotates all blocks $90$ degrees clockwise. Each block rotates around its center and doesn't change its position in the labyrinth. Also, each block has some number of doors (possibly none). In one minute, Theseus can either push the button in order to rotate all the blocks $90$ degrees clockwise or pass to the neighbouring block. Theseus can go from block $A$ to some neighbouring block $B$ only if block $A$ has a door that leads to block $B$ and block $B$ has a door that leads to block $A$ .
Theseus found an entrance to labyrinth and is now located in block $(x_{T},y_{T})$ — the block in the row $x_{T}$ and column $y_{T}$ . Theseus know that the Minotaur is hiding in block $(x_{M},y_{M})$ and wants to know the minimum number of minutes required to get there.
Theseus is a hero, not a programmer, so he asks you to help him.
Each block of the labyrinth has a button that rotates all blocks $90$ degrees clockwise. Each block rotates around its center and doesn't change its position in the labyrinth. Also, each block has some number of doors (possibly none). In one minute, Theseus can either push the button in order to rotate all the blocks $90$ degrees clockwise or pass to the neighbouring block. Theseus can go from block $A$ to some neighbouring block $B$ only if block $A$ has a door that leads to block $B$ and block $B$ has a door that leads to block $A$ .
Theseus found an entrance to labyrinth and is now located in block $(x_{T},y_{T})$ — the block in the row $x_{T}$ and column $y_{T}$ . Theseus know that the Minotaur is hiding in block $(x_{M},y_{M})$ and wants to know the minimum number of minutes required to get there.
Theseus is a hero, not a programmer, so he asks you to help him.
输入格式
The first line of the input contains two integers $n$ and $m$ ( $1<=n,m<=1000$ ) — the number of rows and the number of columns in labyrinth, respectively.
Each of the following $n$ lines contains $m$ characters, describing the blocks of the labyrinth. The possible characters are:
- «+» means this block has $4$ doors (one door to each neighbouring block);
- «-» means this block has $2$ doors — to the left and to the right neighbours;
- «|» means this block has $2$ doors — to the top and to the bottom neighbours;
- «^» means this block has $1$ door — to the top neighbour;
- «>» means this block has $1$ door — to the right neighbour;
- «<» means this block has $1$ door — to the left neighbour;
- «v» means this block has $1$ door — to the bottom neighbour;
- «L» means this block has $3$ doors — to all neighbours except left one;
- «R» means this block has $3$ doors — to all neighbours except right one;
- «U» means this block has $3$ doors — to all neighbours except top one;
- «D» means this block has $3$ doors — to all neighbours except bottom one;
- «\*» means this block is a wall and has no doors.
Left, right, top and bottom are defined from representing labyrinth as a table, where rows are numbered from $1$ to $n$ from top to bottom and columns are numbered from $1$ to $m$ from left to right.
Next line contains two integers — coordinates of the block $(x_{T},y_{T})$ ( $1<=x_{T}<=n$ , $1<=y_{T}<=m$ ), where Theseus is initially located.
Last line contains two integers — coordinates of the block $(x_{M},y_{M})$ ( $1<=x_{M}<=n$ , $1<=y_{M}<=m$ ), where Minotaur hides.
It's guaranteed that both the block where Theseus starts and the block where Minotaur is hiding have at least one door. Theseus and Minotaur may be initially located at the same block.
Each of the following $n$ lines contains $m$ characters, describing the blocks of the labyrinth. The possible characters are:
- «+» means this block has $4$ doors (one door to each neighbouring block);
- «-» means this block has $2$ doors — to the left and to the right neighbours;
- «|» means this block has $2$ doors — to the top and to the bottom neighbours;
- «^» means this block has $1$ door — to the top neighbour;
- «>» means this block has $1$ door — to the right neighbour;
- «<» means this block has $1$ door — to the left neighbour;
- «v» means this block has $1$ door — to the bottom neighbour;
- «L» means this block has $3$ doors — to all neighbours except left one;
- «R» means this block has $3$ doors — to all neighbours except right one;
- «U» means this block has $3$ doors — to all neighbours except top one;
- «D» means this block has $3$ doors — to all neighbours except bottom one;
- «\*» means this block is a wall and has no doors.
Left, right, top and bottom are defined from representing labyrinth as a table, where rows are numbered from $1$ to $n$ from top to bottom and columns are numbered from $1$ to $m$ from left to right.
Next line contains two integers — coordinates of the block $(x_{T},y_{T})$ ( $1<=x_{T}<=n$ , $1<=y_{T}<=m$ ), where Theseus is initially located.
Last line contains two integers — coordinates of the block $(x_{M},y_{M})$ ( $1<=x_{M}<=n$ , $1<=y_{M}<=m$ ), where Minotaur hides.
It's guaranteed that both the block where Theseus starts and the block where Minotaur is hiding have at least one door. Theseus and Minotaur may be initially located at the same block.
输出格式
If Theseus is not able to get to Minotaur, then print -1 in the only line of the output. Otherwise, print the minimum number of minutes required to get to the block where Minotaur is hiding.
输入输出样例
输入 #1
2 2 +* *U 1 1 2 2
输出 #1
-1
输入 #2
2 3 <>< ><> 1 1 2 1
输出 #2
4
Assume that Theseus starts at the block $(x_{T},y_{T})$ at the moment $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted