1112. 迷宫dfs板子题
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1112. 迷宫dfs板子题相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/1114/
#include<bits/stdc++.h>
using namespace std;
int t,n,startx,starty,endx,endy;
int st[101][101];
int dx[4]={-1,0,0,1};
int dy[4]={0,-1,1,0};
bool flag;
string s[110];
void dfs(int x,int y)
{
st[x][y]=1;
if(s[x][y]=='#') return;
if(x==endx&&y==endy) flag=true;
if(flag) return;
for(int i=0;i<4;i++)
{
int tempx=x+dx[i];
int tempy=y+dy[i];
if(tempx<0||tempx>=n||tempy<0||tempy>=n) continue;
if(st[tempx][tempy]) continue;
if(s[tempx][tempy]=='#') continue;
dfs(tempx,tempy);
}
}
int main(void)
{
cin>>t;
while(t--)
{
flag=false;
memset(st,0,sizeof st);
cin>>n;
for(int i=0;i<n;i++) cin>>s[i];
cin>>startx>>starty>>endx>>endy;
dfs(startx,starty);
if(flag) puts("YES");
else puts("NO");
}
return 0;
}
以上是关于1112. 迷宫dfs板子题的主要内容,如果未能解决你的问题,请参考以下文章