Ice bfs

You play a computer game. Your character stands on some level of a multilevel ice cave. In order to move on forward, you need to descend one level lower and the only way to do this is to fall through the ice.

The level of the cave where you are is a rectangular square grid of n rows and m columns. Each cell consists either from intact or from cracked ice. From each cell you can move to cells that are side-adjacent with yours (due to some limitations of the game engine you cannot make jumps on the same place, i.e. jump from a cell to itself). If you move to the cell with cracked ice, then your character falls down through it and if you move to the cell with intact ice, then the ice on this cell becomes cracked.

Let’s number the rows with integers from 1 to n from top to bottom and the columns with integers from 1 to m from left to right. Let’s denote a cell on the intersection of the r-th row and the c-th column as (r, c).
You are staying in the cell (r 1, c 1) and this cell is cracked because you’ve just fallen here from a higher level. You need to fall down through the cell (r 2, c 2) since the exit to the next level is there. Can you do this?
Input
The first line contains two integers, n and m (1 ≤ n, m ≤ 500) — the number of rows and columns in the cave description.
Each of the next n lines describes the initial state of the level of the cave, each line consists of m characters “.” (that is, intact ice) and “X” (cracked ice).
The next line contains two integers, r 1 and c 1 (1 ≤ r 1 ≤ n, 1 ≤ c 1 ≤ m) — your initial coordinates. It is guaranteed that the description of the cave contains character ‘X’ in cell (r 1, c 1), that is, the ice on the starting cell is initially cracked.
The next line contains two integers r 2 and c 2 (1 ≤ r 2 ≤ n, 1 ≤ c 2 ≤ m) — the coordinates of the cell through which you need to fall. The final cell may coincide with the starting one.
Output
If you can reach the destination, print ‘YES’, otherwise print ‘NO’.
Examples
Input
4 6
X…XX
…XX.
.X…X.

1 6
2 2
Output
YES
Input
5 4
.X…
…X
X.X.

.XX.
5 3
1 1
Output
NO
Input
4 7
…X.XX.
.XX…X.
X…X…
X…
2 2
1 6
Output
YES
题意:给你一个n×m的表格,每个点有两种状态,一种是好冰(‘.’),一种是碎冰(‘X’),并且好冰被走过后就变成碎冰了,然后再告诉你起点和终点四个数(t1,c1),(t2,c2),问起点是否能到终点,保证起点是碎冰,终点不一定,最后要求掉进起、终点(即是碎冰,可以踩一下到另一个点再回来),在这期间(除了起点和终点)不得掉进任何一个碎冰,如果可行输出“YES”,不行“NO”。

#include<stdio.h>
#include<queue>
using namespace std;
char a[600][600];
int x,y,tx,ty,n,m;
int s[4][2]= {
    
    {
    
    1,0},{
    
    -1,0},{
    
    0,1},{
    
    0,-1}};
struct node
{
    
    
    int x,y;
} l;
int bfs(int x,int y)
{
    
    
    l.x=x;
    l.y=y;
    queue<node> q;
    q.push(l);
    int i,xx,yy;
    while(!q.empty())
    {
    
    
        l=q.front();
        x=l.x;
        y=l.y;
        q.pop();
        for(i=0; i<4; i++)
        {
    
    
            xx=x+s[i][0];
            yy=y+s[i][1];
            if(xx<0||xx>=n||yy<0||yy>=m)
                continue;
            if(a[xx][yy]=='X')
            {
    
    
                if(xx==tx&&yy==ty)
                    return 1;
            }
            else
            {
    
    
                a[xx][yy]='X';
                l.x=xx;
                l.y=yy;
                q.push(l);
            }
        }
    }
    return 0;
}
int main()
{
    
    
    while(~scanf("%d %d",&n,&m))
    {
    
    
        int i;
        for(i=0; i<n; i++)
            scanf("%s",a[i]);
        scanf("%d %d",&x,&y);
        scanf("%d %d",&tx,&ty);
        x--;y--;tx--;ty--;//地图存的时候从零开始,所以坐标要进行减1。一开始忘了,找了好久才过
        if(bfs(x,y)==1)
            printf("YES\n");
        else
            printf("NO\n");
    }
}

猜你喜欢

转载自blog.csdn.net/m0_46312382/article/details/107549934
ice
BFS