844. 走迷宫
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了844. 走迷宫相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/846/
#include<cstdio>
#include<iostream>
#include<queue>
using namespace std;
int n,m;
int a[105][105];
bool vis[105][105];
int dx[4]={-1,0,1,0};
int dy[4]={0,1,0,-1};
struct node
{
int x,y,step;
}Node;
void bfs(int x,int y)
{
Node.x=0,Node.y=0,Node.step=0;
vis[x][y]=true;
queue<node> q; q.push(Node);
while(!q.empty())
{
node top=q.front(); q.pop();
for(int i=0;i<4;i++)
{
int tempx=top.x+dx[i];
int tempy=top.y+dy[i];
if(vis[tempx][tempy]) continue;
if(tempx<0||tempx>=n) continue;
if(tempy<0||tempy>=m) continue;
if(a[tempx][tempy]==1) continue;
node temp;
temp.x=tempx,temp.y=tempy,temp.step=top.step+1;
vis[tempx][tempy]=true;
q.push(temp);
if( tempx==(n-1) && tempy== (m-1) )
{
cout<<temp.step<<endl;
return ;
}
}
}
}
int main(void)
{
cin>>n>>m;
for(int i=0;i<n;i++)
for(int j=0;j<m;j++)
cin>>a[i][j];
bfs(0,0);
return 0;
}
以上是关于844. 走迷宫的主要内容,如果未能解决你的问题,请参考以下文章