您的位置:首页 > 其它

CodeForces - 540C Ice Cave (bfs)

2018-01-09 22:24 411 查看
题目链接:http://codeforces.com/problemset/problem/540/C点击打开链接

C. Ice Cave

time limit per test
2 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

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 (r1, c1) and
this cell is cracked because you've just fallen here from a higher level. You need to fall down through the cell (r2, c2) 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, r1 and c1 (1 ≤ r1 ≤ n, 1 ≤ c1 ≤ m) —
your initial coordinates. It is guaranteed that the description of the cave contains character 'X' in cell (r1, c1),
that is, the ice on the starting cell is initially cracked.

The next line contains two integers r2 and c2 (1 ≤ r2 ≤ n, 1 ≤ c2 ≤ 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


Note

In the first sample test one possible path is:



After the first visit of cell (2, 2) the ice on it cracks and when you step there for the second time, your character falls through the ice
as intended.

跟以前自己写的bfs模板有点不一样

主要在于判断终点时候的问题

可以在四个方向找的时候就判断而不是入队之后在判断

还有就是需要在入队时候就更改并且更改时即判断 不然会MLE

一个搜索就把自己心态搞炸??

#include <bits/stdc++.h>
using namespace std;
int n,m;
int bex,bey;
int enx,eny;
char mmap[555][555];
int dir[4][2]={0,1,0,-1,1,0,-1,0};
int flag;
struct xjy
{
int x;
int y;
};
void bfs()
{
xjy mid;
mid.x=bex;
mid.y=bey;
queue<xjy > q;
q.push(mid);
while(!q.empty())
{
mid=q.front();
q.pop();
xjy midmid;
for(int i=0;i<4;i++)
{
midmid.x=mid.x+dir[i][0];
midmid.y=mid.y+dir[i][1];
if(midmid.x>0&&midmid.x<=n&&midmid.y>0&&midmid.y<=m)
{
if(midmid.x==enx&&midmid.y==eny&&mmap[midmid.x][midmid.y]=='X')
{
cout << "YES" << endl;
return;
}
else if(mmap[midmid.x][midmid.y]=='.')
{
mmap[midmid.x][midmid.y]='X';
q.push(midmid);
}
}
}
}
cout << "NO" << endl;
}
int main()
{
cin >> n >> m;
for(int i=1;i<=n;i++)
{
for(int j=1;j<=m;j++)
{
scanf(" %c",&mmap[i][j]);
}
}
cin >> bex >> bey;
cin >> enx >> eny;
bfs();
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: