Codeforces_540_C

Posted 冷暖知不知

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces_540_C相关的知识,希望对你有一定的参考价值。

http://codeforces.com/problemset/problem/540/C

 

简单bfs,注意结束条件。

 

#include<iostream>
#include<cstdio>
#include<queue>
using namespace std;

string a[505];
int endx,endy,n,m,dir[][2] = {-1,0,0,-1,1,0,0,1};
struct point{
    int x,y;
}start;
int main()
{
    cin >> n >> m;
    for(int i = 0;i < n;i++)    cin >> a[i];
    cin >> start.x >> start.y >> endx >> endy;
    start.x--;
    start.y--;
    endx--;
    endy--;
    queue<point> q;
    q.push(start);
    while(!q.empty())
    {
        point now = q.front();
        q.pop();

        for(int i = 0;i < 4;i++)
        {
            int xx = now.x+dir[i][0];
            int yy = now.y+dir[i][1];
            if(xx == endx && yy == endy && a[xx][yy] == X)
            {
                printf("YES\n");
                return 0;
            }
            if(xx < 0 || xx >= n || yy < 0 || yy >= m) continue;
            if(a[xx][yy] == X)    continue;
            point temp;
            temp.x = xx;
            temp.y = yy;
            q.push(temp);
            a[xx][yy] = X;
        }
    }
    printf("NO\n");
    return 0;
}

 

以上是关于Codeforces_540_C的主要内容,如果未能解决你的问题,请参考以下文章

Codeforces_327_C

Codeforces_334_C

Codeforces_729_C

Codeforces_733_C

Codeforces_731_C

Codeforces_723_C