ice cave

Description

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‘.

Sample Input

Input

4 6X...XX...XX..X..X.......1 62 2

Output

YES

Input

5 4.X.....XX.X......XX.5 31 1

Output

NO

Input

4 7..X.XX..XX..X.X...X..X......2 21 6

Output

YES

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<queue>
 4 #include<vector>
 5 using namespace std;
 6
 7
 8 int dir[4][2]={1,0,-1,0,0,1,0,-1};
 9 char mp[510][510];
10 int n,m;
11 int ex,ey;
12
13 class point
14 {
15     public :
16         int x,y;
17 };
18
19 int ok(int x,int y)
20 {
21 return x>=1&&y>=1&&x<=n&&y<=m;
22 }
23
24 int bfs(int x,int y)
25 {
26     queue<point> q;
27
28     point sta,nw,nxt,ep;
29     ep.x=ex;
30     ep.y=ey;
31     sta.x=x,sta.y=y;
32     q.push(sta);
33
34     while(!q.empty())
35     {
36         nw=q.front();
37         q.pop();
38
39         for(int i=0;i<4;i++)
40         {
41             nxt.x=nw.x+dir[i][0];
42             nxt.y=nw.y+dir[i][1];
43
44             if(ok(nxt.x,nxt.y))
45             {
46                 if(nxt.x==ep.x&&nxt.y==ep.y)
47                 {
48                     if(mp[nxt.x][nxt.y]==‘.‘)mp[nxt.x][nxt.y]=‘X‘;
49                     else return 1;
50                     q.push(nxt);
51                 }
52                 else if(mp[nxt.x][nxt.y]==‘.‘)
53                 {
54                     mp[nxt.x][nxt.y]=‘X‘;
55                     q.push(nxt);
56                 }
57             }
58         }
59
60     }
61     return 0;
62 }
63 int main()
64 {
65     int sx,sy;
66     while(scanf("%d%d",&n,&m)!=EOF)
67     {
68         for(int i=1;i<=n;i++)scanf("%s",mp[i]+1);
69         scanf("%d%d%d%d",&sx,&sy,&ex,&ey);
70         if(bfs(sx,sy))cout<<"YES"<<endl;
71         else cout<<"NO"<<endl;
72     }
73     return 0;
74 }

时间: 2024-10-23 20:01:20

ice cave的相关文章

ICE CAVE(BFS搜索(模拟))

Description 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 y

DFS/BFS Codeforces Round #301 (Div. 2) C. Ice Cave

题目传送门 1 /* 2 题意:告诉起点终点,踩一次, '.'变成'X',再踩一次,冰块破碎,问是否能使终点冰破碎 3 DFS:如题解所说,分三种情况:1. 如果两点重合,只要往外走一步再走回来就行了:2. 若两点相邻, 4 那么要不就是踩一脚就破了或者踩一脚走开再走回来踩一脚破了:3. 普通的搜索看是否能到达, 5 若能还是要讨论终点踩几脚的问题:) 6 DFS 耗时大,险些超时,可以用BFS来做 7 */ 8 #include <cstdio> 9 #include <algorit

CodeForces 540C Ice Cave (BFS)

http://codeforces.com/problemset/problem/540/C Ice Cave Time Limit:2000MS     Memory Limit:262144KB     64bit IO Format:%I64d & %I64u Submit Status Practice CodeForces 540C Description You play a computer game. Your character stands on some level of

C. Ice Cave (CF #301 (Div. 2) 搜索bfs)

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

CF #301 504C C. Ice Cave BFS

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

(简单广搜) Ice Cave -- codeforces -- 540C

http://codeforces.com/problemset/problem/540/C 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

2020腾讯笔试--Ice Cave

链接:http://codeforces.com/contest/540/problem/C 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

540C: Ice Cave

题目链接 题意: n*m的地图,'X'表示有裂痕的冰块,'.'表示完整的冰块,有裂痕的冰块再被踩一次就会碎掉,完整的冰块被踩一次会变成有裂痕的冰块, 现在告诉起点和终点,问从起点能否走到终点并且使终点的冰块碎掉.不能原地跳.起点和终点可能会在同一个位置. 解题思路: 在只走'.'的情况下把终点的冰踩碎   输入n*m的矩阵 以及走的开始和终点位置 在开始点,上下左右找'.',有就走,并把改点设置为'X',走到终点时候,若终点是'X'则成功. 其他情况都失败.   这个程序是在codeforces

CF540C Ice Cave

思路: 搜索. 加回溯会超时,不加回溯就过了,不是很理解. 实现: 1 #include <iostream> 2 #include <cstdio> 3 using namespace std; 4 5 const int dx[4] = { 0, 1, 0, -1 }, dy[4] = { 1, 0, -1, 0 }; 6 7 char a[505][505]; 8 int r, c, sx, sy, ex, ey; 9 10 bool dfs(int x, int y) 11