Acwing844.走迷宫
Posted 叶卡捷琳堡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Acwing844.走迷宫相关的知识,希望对你有一定的参考价值。
使用STL的queue实现
#include<iostream>
#include<queue>
#include<cstring>
#include<algorithm>
using namespace std;
typedef pair<int,int> PII;
const int N = 110;
int n,m;
queue<PII> q;
int grid[N][N];
// 保存距离
int d[N][N];
int bfs()
// 初始化操作
q.push(0,0);
memset(d,-1,sizeof d);
d[0][0] = 0;
// 使用向量的方式枚举
int dx[4] = -1,0,1,0, dy[4] = 0,1,0,-1;
while(!q.empty())
auto e = q.front();
q.pop();
for(int i = 0;i < 4;i++)
int x = e.first + dx[i], y = e.second + dy[i];
if(x < n && x >= 0 && y < m && y >= 0 && d[x][y] == -1 && grid[x][y] == 0)
d[x][y] = d[e.first][e.second] + 1;
q.push(x,y);
return d[n-1][m-1];
int main()
cin >> n >> m;
for(int i = 0;i < n;i++)
for(int j = 0;j < m;j++)
cin >> grid[i][j];
cout << bfs() << endl;
以上是关于Acwing844.走迷宫的主要内容,如果未能解决你的问题,请参考以下文章