D. Solve The Maze Codeforces Round #648 (Div. 2)

D. Solve The Maze
Vivek has encountered a problem. He has a maze that can be represented as an n×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.

Input
The first line contains one integer t (1≤t≤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≤n,m≤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.

Output
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).

Example
inputCopy
6
1 1
.
1 2
G.
2 2
#B
G.
2 3
G.#
B#.
3 3
#B.
#…
GG.
2 2
#B
B.
outputCopy
Yes
Yes
No
No
Yes
Yes
Note
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).

先把坏人堵住,然后再BFS搜就行了
注意:不要把坏人旁边的坏人变成墙,不然会漏写。我一开始就wa了4发这个问题。。。。。

#include <iostream>
#include <algorithm>
#include <set>
#include <cstring>
#include <queue>
using namespace std;
#define int long long
char ch[55][55];
char g[55][55];
int f1[] = {0, 0, 1, -1};
int f2[] = {1, -1, 0, 0};
int cou = 0;
int n, m;
bool pan[55][55];
struct node
{
    int x, y;
};
void BFS(int a, int b)
{
    queue<node> cun;
    if (ch[a][b]=='#') return;
    cun.push({a, b});
    pan[a][b] = true;
    if (ch[a][b] == 'G')
        cou++;
    while (!cun.empty())
    {
        int x = cun.front().x;
        int y = cun.front().y;
        cun.pop();
        for (int i = 0; i < 4; i++)
        {
            int xx = x + f1[i];
            int yy = y + f2[i];
            if (xx <= n && yy <= m && xx >= 1 && yy >= 1 && pan[xx][yy] == false)
            {
                if (ch[xx][yy] != '#')
                {
                    if (ch[xx][yy] == 'G')
                        cou++;
                    cun.push({xx, yy});
                    pan[xx][yy] = true;
                }
            }
        }
    }
}
signed main()
{
    int t;
    cin >> t;
    while (t--)
    {
        cou = 0;
        int hh = 0;
        memset(ch, '#', sizeof(ch));
        memset(pan, false, sizeof(pan));
        cin >> n >> m;
        for (int i = 1; i <= n; i++)
        {
            for (int j = 1; j <= m; j++)
            {
                cin >> ch[i][j];
                if (ch[i][j] == 'G')
                    hh++;
            }
        }
        bool flag = true;
        for (int i = 1; i <= n; i++)
        {
            for (int j = 1; j <= m; j++)
            {
                if (ch[i][j] == 'B')
                {
                    for (int h = 0; h < 4; h++)
                    {
                        int x = i + f1[h];
                        int y = j + f2[h];
                        if (ch[x][y]!='B') ch[x][y] = '#';//这里注意
                    }
                }
            }
        }
        if (hh == 0)
        {
            cout << "YES" << endl;
        }
        else
        {
            BFS(n, m);
         //   cout<<cou<<" "<<hh<<endl;
            if (cou == hh)
                cout << "YES" << endl;
            else
                cout << "NO" << endl;
        }
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值