A13514 | Solve The Maze
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Vivek has encountered a problem. He has a maze that can be represented as an $n \times m$ grid. Each of the grid cells may represent the following:
- Empty — '.'
- Wall — '\#'
- Good person — 'G'
- Bad person — 'B'
The only escape from the maze is at cell $(n, m)$ .
A person can move to a cell only if it shares a side with their current cell and does not contain a wall. Vivek wants to block some of the empty cells by replacing them with walls in such a way, that all the good people are able to escape, while none of the bad people are able to. A cell that initially contains 'G' or 'B' cannot be blocked and can be travelled through.
Help him determine if there exists a way to replace some (zero or more) empty cells with walls to satisfy the above conditions.
It is guaranteed that the cell $(n,m)$ is empty. Vivek can also block this cell.
- Empty — '.'
- Wall — '\#'
- Good person — 'G'
- Bad person — 'B'
The only escape from the maze is at cell $(n, m)$ .
A person can move to a cell only if it shares a side with their current cell and does not contain a wall. Vivek wants to block some of the empty cells by replacing them with walls in such a way, that all the good people are able to escape, while none of the bad people are able to. A cell that initially contains 'G' or 'B' cannot be blocked and can be travelled through.
Help him determine if there exists a way to replace some (zero or more) empty cells with walls to satisfy the above conditions.
It is guaranteed that the cell $(n,m)$ is empty. Vivek can also block this cell.
输入格式
The first line contains one integer $t$ $(1 \le t \le 100)$ — the number of test cases. The description of the test cases follows.
The first line of each test case contains two integers $n$ , $m$ $(1 \le n, m \le 50)$ — the number of rows and columns in the maze.
Each of the next $n$ lines contain $m$ characters. They describe the layout of the maze. If a character on a line equals '.', the corresponding cell is empty. If it equals '\#', the cell has a wall. 'G' corresponds to a good person and 'B' corresponds to a bad person.
The first line of each test case contains two integers $n$ , $m$ $(1 \le n, m \le 50)$ — the number of rows and columns in the maze.
Each of the next $n$ lines contain $m$ characters. They describe the layout of the maze. If a character on a line equals '.', the corresponding cell is empty. If it equals '\#', the cell has a wall. 'G' corresponds to a good person and 'B' corresponds to a bad person.
输出格式
For each test case, print "Yes" if there exists a way to replace some empty cells with walls to satisfy the given conditions. Otherwise print "No"
You may print every letter in any case (upper or lower).
You may print every letter in any case (upper or lower).
输入输出样例
输入 #1
6 1 1 . 1 2 G. 2 2 #B G. 2 3 G.# B#. 3 3 #B. #.. GG. 2 2 #B B.
输出 #1
Yes Yes No No Yes Yes
For the first and second test cases, all conditions are already satisfied.
For the third test case, there is only one empty cell $(2,2)$ , and if it is replaced with a wall then the good person at $(1,2)$ will not be able to escape.
For the fourth test case, the good person at $(1,1)$ cannot escape.
For the fifth test case, Vivek can block the cells $(2,3)$ and $(2,2)$ .
For the last test case, Vivek can block the destination cell $(2, 2)$ .
For the third test case, there is only one empty cell $(2,2)$ , and if it is replaced with a wall then the good person at $(1,2)$ will not be able to escape.
For the fourth test case, the good person at $(1,1)$ cannot escape.
For the fifth test case, Vivek can block the cells $(2,3)$ and $(2,2)$ .
For the last test case, Vivek can block the destination cell $(2, 2)$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted