标签:style blog http color io os ar for strong
一道简单的广搜或者深搜题,
题目ID:1005
题目名称:迷宫
有效耗时:0 ms
空间消耗:784 KB
程序代码:
#include<iostream> #include<stack> #include<cstring> using namespace std; char a[102][102]; int n; int x1,y11,x2,y2; const int step[4][2]={{0,1},{-1,0},{0,-1},{1,0}}; bool dfs(int x,int y){ bool visit[102][102]; memset(visit,false,sizeof(visit)); stack<int> xs,ys; xs.push(x); ys.push(y); visit[x][y]=true; while(!xs.empty()){ x=xs.top();y=ys.top(); xs.pop();ys.pop(); for(int i=0;i<4;i++){ int xx=x+step[i][0]; int yy=y+step[i][1]; if(xx>=0&&xx<n&&yy>=0&&yy<n&&a[xx][yy]!=‘#‘&&!visit[xx][yy]){ // cout<<a[xx][yy]<<endl; xs.push(xx);ys.push(yy); visit[xx][yy]=true; if(xx==x2&&yy==y2) return true; } } } return visit[x2][y2]; } int main(){ int t; cin>>t; while(t--){ memset(a,‘#‘,sizeof(a)); cin>>n; for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ cin>>a[i][j]; } } cin>>x1>>y11>>x2>>y2; if(dfs(x1,y11)) cout<<"YES"<<endl; else cout<<"NO"<<endl; } // system("pause"); return 0; }
一天Extense在森林里探险的时候不小心走入了一个迷宫,迷宫可以看成是由n * n的格点组成,每个格点只有2种状态, . 和#, 前者表示可以通行后者表示不能通行。同时当Extense处在某个格点时,他只能移动到东南西北(或者说上下左右)四个方向之一的相邻格点 上,Extense想要从点A走到点B,问在不走出迷宫的情况下能不能办到。如果起点或者终点有一个不能通行(为#),则看成无法办到。
2 3 .## ..# #.. 0 0 2 2 5 ..... ###.# ..#.. ###.. ...#. 0 0 4 0
YES NO
标签:style blog http color io os ar for strong
原文地址:http://www.cnblogs.com/jinfang134/p/4034360.html