NOI:1972 迷宫
程序员文章站
2024-03-15 08:34:17
...
题目链接:http://noi.openjudge.cn/ch0205/1792/
#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;
}
}
}
上一篇: C语言-判断字符串b的所有字符是否都在字符串a中出现过
下一篇: 组合总数II