1 Star 0 Fork 0

匿名者/C++高阶

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
bfs走迷宫.cpp 1.55 KB
一键复制 编辑 原始数据 按行查看 历史
匿名者 提交于 2024-03-26 18:35 . bfs走迷宫
#include <iostream>
#include <map>
#include <algorithm>
#include <cstring>
using namespace std;
/*
const int N =110;
int n,m;
int g[N][N];//棋盘
int d[N][N];
pair<int,int> q[N*N];
int bfs(){
int hh=0,tt=0;
q[0]={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(hh<=tt)
{
auto t =q[hh++];
for(int i =0;i<4;i++)
{
int x=t.first+dx[i],y=t.second+dy[i];
if(x>=0 && x<n && y>=0 && y<m && g[x][y]==0 &&d[x][y]==-1)
{
d[x][y]=d[t.first][t.second]+1;
q[++tt]={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>>g[i][j];
cout<<bfs()<<endl;
return 0;
}*/
#include <iostream>
#include <cstring>
#include <map>
#include <queue>
using namespace std;
const int N = 105;
int g[N][N];
int d[N][N];
queue<pair<int, int>> q[N * N];
int n, m;
int bfs()
{
q->push({ 0,0 });//原点入队
memset(d, -1, sizeof(d));
d[0][0] = 0;//起点距离起点0,易忘记
while (q->size())
{
auto ans = q->front();
q->pop();//易忘记
//int dx[4] = { -1, 0, 1, 0 }, dy[4] = { 0, 1, 0, -1 };
int dx[4] = { 0,-1 ,0,1 }, dy[4] = { -1,0,1,0 };
for (int i = 0; i < 4; i++)
{
int x = ans.first + dx[i], y = ans.second + dy[i];
if (x >= 0 && x < n && y >= 0 && y < m && g[x][y] == 0 && d[x][y] == -1)
{
d[x][y] = d[ans.first][ans.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 >> g[i][j];
cout << bfs() << endl;
return 0;
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/adexiur/c-higher-order.git
git@gitee.com:adexiur/c-higher-order.git
adexiur
c-higher-order
C++高阶
master

搜索帮助