1076. 迷宫问题存路径的bfs
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了1076. 迷宫问题存路径的bfs相关的知识,希望对你有一定的参考价值。
https://www.acwing.com/problem/content/description/1078/
存路径的时候存的是这个点从哪里来的,即上一个点。
#include<bits/stdc++.h>
using namespace std;
const int N=1010;
int a[N][N],n,st[N][N];
map<pair<int,int>,pair<int,int>>mp;
struct node {int x,y;}temp;
int dx[4]={-1,0,0,1};
int dy[4]={0,-1,1,0};
pair<int,int> path[N][N];
void bfs()
{
queue<node>q; q.push({0,0});
st[0][0]=1;
while(q.size())
{
auto u=q.front(); q.pop();
int x=u.x,y=u.y;
if(x==n-1&&y==n-1) break;
for(int i=0;i<4;i++)
{
int tempx=x+dx[i];
int tempy=y+dy[i];
if(tempx<0||tempy<0 ||tempx>=n || tempy>= n) continue;
if(a[tempx][tempy]) continue;
if(st[tempx][tempy]) continue;
st[tempx][tempy]=1;
path[tempx][tempy]={x,y};
q.push({tempx,tempy});
}
}
}
int main(void)
{
cin>>n;
for(int i=0;i<n;i++)
for(int j=0;j<n;j++)
scanf("%d",&a[i][j]);
bfs();
vector<pair<int,int>>ve;
int x=n-1,y=n-1;
while(1)
{
ve.push_back({x,y});
if(x==0&&y==0) break;
int tempx=x,tempy=y;
x=path[tempx][tempy].first,y=path[tempx][tempy].second;
}
for(int i=ve.size()-1;i>=0;i--) printf("%d %d\\n",ve[i].first,ve[i].second);
return 0;
}
以上是关于1076. 迷宫问题存路径的bfs的主要内容,如果未能解决你的问题,请参考以下文章