CodeForces362A Two Semiknights Meet(dfs)

CodeForces362A Two Semiknights Meet

Time Limit:1000MS Memory Limit:262144KB 64bit IO Format:%I64d & %I64u

Description

A boy Petya loves chess very much. He even came up with a chess piece of his own, a semiknight. The semiknight can move in any of these four directions: 2 squares forward and 2 squares to the right, 2 squares forward and 2 squares to the left, 2 squares backward and 2 to the right and 2 squares backward and 2 to the left. Naturally, the semiknight cannot move beyond the limits of the chessboard.

Petya put two semiknights on a standard chessboard. Petya simultaneously moves with both semiknights. The squares are rather large, so after some move the semiknights can meet, that is, they can end up in the same square. After the meeting the semiknights can move on, so it is possible that they meet again. Petya wonders if there is such sequence of moves when the semiknights meet. Petya considers some squares bad. That is, they do not suit for the meeting. The semiknights can move through these squares but their meetings in these squares don’t count.

Petya prepared multiple chess boards. Help Petya find out whether the semiknights can meet on some good square for each board.

Please see the test case analysis.

Input

The first line contains number t (1 ≤ t ≤ 50) — the number of boards. Each board is described by a matrix of characters, consisting of 8 rows and 8 columns. The matrix consists of characters “.”, “#”, “K”, representing an empty good square, a bad square and the semiknight’s position, correspondingly. It is guaranteed that matrix contains exactly 2 semiknights. The semiknight’s squares are considered good for the meeting. The tests are separated by empty line.

Output

For each test, print on a single line the answer to the problem: “YES”, if the semiknights can meet and “NO” otherwise.

Sample Input

Input

2
........
........
......#.
K..##..#
.......#
...##..#
......#.
K.......

........
........
..#.....
..#..#..
..####..
...##...
........
....K#K#

Output

YES
NO

Hint

Consider the first board from the sample. We will assume the rows and columns of the matrix to be numbered 1 through 8 from top to bottom and from left to right, correspondingly. The knights can meet, for example, in square (2, 7). The semiknight from square (4, 1) goes to square (2, 3) and the semiknight goes from square (8, 1) to square (6, 3). Then both semiknights go to (4, 5) but this square is bad, so they move together to square (2, 7).

On the second board the semiknights will never meet.

鏈接在這:題目鏈接


兩個棋子k(其實就是象棋裏的象或相),同時走看能否相遇,注意#可以經過,但不能在#處相遇,
dfs解決

代碼:

#include<stdio.h>
#include<string.h>

char map[10][10];
int vis1[10][10];
int vis2[10][10];
int dxy[4][2]={2,2,2,-2,-2,2,-2,-2};
int x1,y1,x2,y2;

void dfs1 (int x,int y,int step)
{
    if(x<0||x>=8||y<0||y>=8)
        return;
    else if(map[x][y]=='K'||map[x][y]=='.'||map[x][y]=='#')
    {
        if(vis1[x][y]==0)
            vis1[x][y]=step;
        else
        {
            if(vis1[x][y]>step)
                vis1[x][y]=step;
            else
                return;
        }
        for(int i=0;i<4;i++)
        {
            int nx=x+dxy[i][0];
            int ny=y+dxy[i][1];
            dfs1(nx,ny,step+1);
        }
    }
}

void dfs2 (int x,int y,int step)
{
    if(x<0||x>=8||y<0||y>=8)
        return;
    else if(map[x][y]=='K'||map[x][y]=='.'||map[x][y]=='#')
    {
        if(vis2[x][y]==0)
            vis2[x][y]=step;
        else
        {
            if(vis2[x][y]>step)
                vis2[x][y]=step;
            else
                return;
        }
        for(int i=0;i<4;i++)
        {
            int nx=x+dxy[i][0];
            int ny=y+dxy[i][1];
            dfs2(nx,ny,step+1);
        }
    }
}

int main()
{
    int t;
    scanf("%d",&t);
    while(t--)
    {
        int flag=0;
        memset(vis1,0,sizeof(vis1));
        memset(vis2,0,sizeof(vis2));
        for(int i=0;i<8;i++)
            scanf("%s",map[i]);
        for(int i=0;i<8;i++)
        {
            for(int j=0;j<8;j++)
            {
                if(map[i][j]=='K')
                {
                    if(flag==0)
                        x1=i,y1=j,flag=1;
                    else
                        x2=i,y2=j;
                }
            }
        }
        dfs1(x1,y1,1);
        dfs2(x2,y2,1);
        int ans=0;
        int max1=-1,max2=-1;
        for(int i=0;i<8;i++)
        {
            for(int j=0;j<8;j++)
            {
                if(map[i][j]!='#'&&vis1[i][j]!=0&&vis2[i][j]!=0&&(vis1[i][j]-vis2[i][j])%2==0)
                {
                    ans=1;
                }
                if(max1<vis1[i][j])
                    max1=vis1[i][j];
                if(max2<vis2[i][j])
                    max2=vis2[i][j];
            }
        }
        if(max1<=1||max2<=1)
            ans=0;
        if(ans)
            printf("YES\n");
        else
            printf("NO\n");
    }
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章