欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

NOI:1972 迷宫

程序员文章站 2024-03-15 08:34:17
...

题目链接:http://noi.openjudge.cn/ch0205/1792/

NOI:1972 迷宫

#include <stdio.h>
#include <iostream>
using namespace std;
int n;
int ha,la,hb,lb;
bool a[105][105],b[105][105];
bool in_out(int x,int y){
    if(x>=0&&x<n&&y>=0&&y<n)return true;
    return false;
}
void test(int x,int y){
    if(x==hb&&y==lb){
        b[hb][lb]=false;
        return;
    }else{
        if(a[x+1][y]&&in_out(x+1,y)&&b[x+1][y]){
            b[x+1][y]=false;
            test(x+1,y);
        }
        if(a[x][y+1]&&in_out(x,y+1)&&b[x][y+1]){
            b[x][y+1]=false;
            test(x,y+1);
        }
        if(a[x-1][y]&&in_out(x-1,y)&&b[x-1][y]){
            b[x-1][y]=false;
            test(x-1,y);
        }
        if(a[x][y-1]&&in_out(x,y-1)&&b[x][y-1]){
            b[x][y-1]=false;
            test(x,y-1);
        }
    }
}
int main(){
    int t;
    cin>>t;
    while(t--){
        cin>>n;
        for(int i=0;i<n;i++){
            for(int j=0;j<n;j++){
                char t;
                cin>>t;
                if(t=='#'){
                    a[i][j]=false;
                    b[i][j]=true;
                }else{
                    a[i][j]=true;
                    b[i][j]=true;
                }
            }
        }
        cin>>ha>>la>>hb>>lb;
        if((!a[ha][la])||(!a[hb][lb])){
            cout<<"NO"<<endl;
        }else{
            test(ha,la);
            if(!b[hb][lb])cout<<"YES"<<endl;
            else cout<<"NO"<<endl;
        }
    }
}

相关标签: NOI