【BFS专题】备战蓝桥杯

一、走迷宫

本题源于acwing算法基础课BFS,题号是844。

在这里插入图片描述
在这里插入图片描述

题目分析:
这道题对于每个点需要记录两个变量x和y,因此用pair存就好。
当前路径的最短距离存储在d[x][y]中。

AC代码:

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<queue>
using namespace std;

const int N = 105;
int n, m;
int g[N][N], d[N][N];
int vis[N][N];
int dx[] = {0, 0, -1, 1};
int dy[] = {-1, 1, 0, 0};

typedef pair<int, int> PII;

int bfs()
{
	queue<PII> q;
	q.push({0, 0});
	d[0][0] = 0; //记得要初始化 
	
	while(!q.empty())
	{
		PII t = q.front();
		q.pop();
		for(int i = 0; i < 4; i++)
		{
			int x = t.first + dx[i];
			int y = t.second + dy[i];
			// n行 m列 
			if(x>=0 && x<n && y>=0 && y<m && vis[x][y]==0 && g[x][y]==0)	
			// vis[x][y]标记是否已经进过队列
			// g[x][y]表示地图可不可走 
			{
				d[x][y] = d[t.first][t.second] + 1;
				vis[x][y] = 1;
				q.push({x, y});
			}
		}	
	}
	return d[n-1][m-1];
}

int main(void)
{
	cin>> n >> m;
	for(int i = 0; i < n; i++)
		for(int j = 0; j < m; j++)
			cin>> g[i][j];
	
	cout<< bfs();
	return 0;
}

二、迷宫

在这里插入图片描述

01010101001011001001010110010110100100001000101010
00001000100000101010010000100000001001100110100101
01111011010010001000001101001011100011000000010000
01000000001010100011010000101000001010101011001011
00011111000000101000010010100010100000101100000000
11001000110101000010101100011010011010101011110111
00011011010101001001001010000001000101001110000000
10100000101000100110101010111110011000010000111010
00111000001010100001100010000001000101001100001001
11000110100001110010001001010101010101010001101000
00010000100100000101001010101110100010101010000101
11100100101001001000010000010101010100100100010100
00000010000000101011001111010001100000101010100011
10101010011100001000011000010110011110110100001000
10101010100001101010100101000010100000111011101001
10000000101100010000101100101101001011100000000100
10101001000000010100100001000100000100011110101001
00101001010101101001010100011010101101110000110101
11001010000100001100000010100101000001000111000010
00001000110000110101101000000100101001001000011101
10100101000101000000001110110010110101101010100001
00101000010000110101010000100010001001000100010101
10100001000110010001000010101001010101011111010010
00000100101000000110010100101001000001000000000010
11010000001001110111001001000011101001011011101000
00000110100010001000100000001000011101000000110011
10101000101000100010001111100010101001010000001000
10000010100101001010110000000100101010001011101000
00111100001000010000000110111000000001000000001011
10000001100111010111010001000110111010101101111000

题目分析:

这道题需要存储三个量x, y, way。
因此要用到结构体。

#include<iostream>
#include<cstring>
#include<cstdio>
#include<algorithm>
#include<queue>
using namespace std;

const int N = 105;
int n, m;
int g[N][N], d[N][N];
int vis[N][N];
int dx[] = {0, 0, -1, 1};
int dy[] = {-1, 1, 0, 0};

typedef pair<int, int> PII;

int bfs()
{
	queue<PII> q;
	q.push({0, 0});
	d[0][0] = 0; //记得要初始化 
	
	while(!q.empty())
	{
		PII t = q.front();
		q.pop();
		for(int i = 0; i < 4; i++)
		{
			int x = t.first + dx[i];
			int y = t.second + dy[i];
			// n行 m列 
			if(x>=0 && x<n && y>=0 && y<m && vis[x][y]==0 && g[x][y] == 0)	
			// vis[x][y]标记是否已经进过队列
			// g[x][y]表示地图可不可走 
			{
				d[x][y] = d[t.first][t.second] + 1;
				vis[x][y] = 1;
				q.push({x, y}); //记得入队 
			}
		}	
	}
	return d[n-1][m-1];
}

int main(void)
{
	cin>> n >> m;
	for(int i = 0; i < n; i++)
		for(int j = 0; j < m; j++)
			cin>> g[i][j];
	
	cout<< bfs();
	return 0;#include <bits/stdc++.h>
using namespace std;
char s[30][50];
int dx[4] = {1,0,0,-1},dy[4] = {0,-1,1,0};
char direction[4] = {'D','L','R','U'};
bool st[30][50];

struct point{
  int x,y;
  string way;
};

void bfs()
{
    queue<point>q;
    point p;
    p.x = p.y = 0;
    p.way = "";
    q.push(p);
    st[0][0] = true;
    while(!q.empty())
    {
    	auto t = q.front();
    	q.pop();
     	if(t.x == 29 && t.y == 49)
     	{
       		cout << t.way << endl;
      		break;
     	}
     	for (int i = 0; i < 4; i ++ )
     	{
            int a = t.x + dx[i],b = t.y + dy[i];
            if(a>=0 && a<30 && b>=0 && b<50 && s[a][b] =='0'&& st[a][b]==false)
			{
                point tt;
                tt.x = a,tt.y = b;
                tt.way = t.way + direction[i];//存答案
                q.push(tt);
                st[a][b] = true;
            }
        }
   }
}

int main()
{
  for(int i = 0;i < 30; i ++)
  for(int j = 0;j < 50;j ++)
  cin >> s[i][j];
  
  bfs();
  return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

qing小星星

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值