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板子题的主要内容,如果未能解决你的问题,请参考以下文章

5月18日考试错误题目走迷宫

DFS序 + 板子

HDU 1728 逃离迷宫(DFS经典题,比赛手残写废题)

迷宫寻路问题全解

递归入门走迷宫-DFS

OpenJudge 2.5-1792这绝壁是一道玄学题!DFS