CF540C.Ice Cave

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn rows and mm 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 11 to nn from top to bottom and the columns with integers from 11 to mm from left to right. Let's denote a cell on the intersection of the rr -th row and the cc -th column as (r,c)(r,c) .

You are staying in the cell (r1,c1)(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 (r2,c2)(r_{2},c_{2}) since the exit to the next level is there. Can you do this?

输入格式

The first line contains two integers, nn and mm ( 1<=n,m<=5001<=n,m<=500 ) — the number of rows and columns in the cave description.

Each of the next nn lines describes the initial state of the level of the cave, each line consists of mm characters "." (that is, intact ice) and "X" (cracked ice).

The next line contains two integers, r1r_{1} and c1c_{1} ( 1<=r1<=n,1<=c1<=m1<=r_{1}<=n,1<=c_{1}<=m ) — your initial coordinates. It is guaranteed that the description of the cave contains character 'X' in cell (r1,c1)(r_{1},c_{1}) , that is, the ice on the starting cell is initially cracked.

The next line contains two integers r2r_{2} and c2c_{2} ( 1<=r2<=n,1<=c2<=m1<=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.

输出格式

If you can reach the destination, print 'YES', otherwise print 'NO'.

输入输出样例

  • 输入#1

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

    输出#1

    YES
    
  • 输入#2

    5 4
    .X..
    ...X
    X.X.
    ....
    .XX.
    5 3
    1 1
    

    输出#2

    NO
    
  • 输入#3

    4 7
    ..X.XX.
    .XX..X.
    X...X..
    X......
    2 2
    1 6
    

    输出#3

    YES
    

说明/提示

In the first sample test one possible path is:

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

首页