蓝桥杯BFS从此搞懂搜索题的套路! | 入门必看
Posted 小卢先冲
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了蓝桥杯BFS从此搞懂搜索题的套路! | 入门必看相关的知识,希望对你有一定的参考价值。
目录
注意的点:题目地图范围是从(1,1)~(n,n),我们是从(0,0)~(n+1,n+1),即扩大一圈最外圈全部为0,这样当我们搜索(bfs)即可满足将外围的0全部标记
BFS可用于解决2类问题:
1.从A点出发是否存在到达B的路径;DFS也可以
2.从A点出发到达B的最短路径;数据小于20以内的话,DFS也不是不可以
整体思路
其思路为从图上一个节点出发,先访问其直接相连的子节点,若子节点不符合,再问其他子节点,按级别顺序(一层一层)依次访问,直到访问到目标节点。
步骤
- 起始:将起点(源点,树的根节点)放入队列中
- 扩散:从队列中取出队头的节点,将它相邻节点放入队列中,不断重复这一步
- 终止:当队列为空时,说明我们遍历了所有的能到的结点,整个图能到的点都被搜索了一遍
贴一个非常详细的学习视频
简单热身题
第一题:走迷宫-BFS
题目描述
给定一个 n×m 的二维整数数组,用来表示一个迷宫,数组中只包含 0 或 1,其中 0 表示可以走的路,11 表示不可通过的墙壁。最初,有一个人位于左上角 (1,1) 处,已知该人每次可以向上、下、左、右任意一个方向移动一个位置。
请问,该人从左上角移动至右下角 (n,m) 处,至少需要移动多少次。
数据保证 (1,1) 处和 (n,m) 处的数字为 0,且一定至少存在一条通路。
输入格式
第一行包含两个整数 n 和 m。
接下来 n 行,每行包含 m 个整数(0 或 1),表示完整的二维数组迷宫。
输出格式
输出一个整数,表示从左上角移动至右下角的最少移动次数。
数据范围
1≤n,m≤100
输入样例:
5 5 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 0 1 1 1 0 0 0 0 1 0
输出样例:8
题目分析
难点
- 方向坐标:4连通
static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0;用队列存每一个位置的坐标
Queue<Pair> q = new LinkedList<>();//存坐标 q.offer(new Pair(1, 1));//将起始位置坐标放入队头坐标用一个类来存取
class Pair int x, y; public Pair(int x, int y) this.x = x; this.y = y;边界是什么
if (a < 1 || a > n || b < 1 || b > m) continue;//越界,需要换一个方向 if (map[a][b] ==1 || dist[a][b] > 0) continue;//障碍,遍历过的点就不搜索了
题目代码
import com.sun.org.apache.bcel.internal.generic.IF_ACMPEQ; import java.util.Arrays; import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class 走迷宫_bfs static int n, m, res=0; static int[][] map = new int[110][110];//地图 static int[][] dist = new int[110][110];//存起始位置到每一个坐标的移动次数 static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0; public static void main(String[] args) Scanner sca = new Scanner(System.in); n = sca.nextInt(); m = sca.nextInt(); for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) map[i][j] = sca.nextInt(); res = bfs(); System.out.println(res); static int bfs() Queue<Pair> q = new LinkedList<>();//存坐标 q.offer(new Pair(1, 1));//将起始位置坐标放入队头 while (!q.isEmpty()) //队列不为空 Pair pair = q.poll();//取出队头 for (int i = 0; i < 4; i++) int a = pair.x + dx[i], b = pair.y + dy[i]; if (a < 1 || a > n || b < 1 || b > m) continue;//越界,需要换一个方向 if (map[a][b] ==1 || dist[a][b] > 0) continue;//障碍,遍历过的点就不搜索了 q.offer(new Pair(a, b));//将此位置加入队列 dist[a][b] = dist[pair.x][pair.y] + 1;//移动次数+1 if (pair.x==n&&pair.y==m) return dist[n][m]; return dist[n][m]; class Pair int x, y; public Pair(int x, int y) this.x = x; this.y = y;
第二题:离开中山路
输入输出样例
输入 #1复制
3 001 101 100 1 1 3 3
输出 #1复制
4说明/提示
对于 20% 数据,满足 1≤n≤100。
对于 100%数据,满足 1≤n≤1000。
题目分析
思路和第一题一样
难点
方向坐标:4连通
static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0;用队列存每一个位置的坐标
Queue<Pair> q = new LinkedList<>();//存坐标 q.offer(new Pair(x1-1, y1-1));//将起始位置坐标放入队头坐标用一个类来存取
class Pair int x, y; public Pair(int x, int y) this.x = x; this.y = y;边界是什么
if (a < 0 || a >= n || b < 0 || b >= n) continue; if (map[a][b] == '1' || dist[a][b] > 0) continue;- 终止条件是什么
if (pair2.x == x2 - 1 && pair2.y == y2 - 1) return dist[x2 - 1][y2 - 1];
题目代码
import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class 离开中山路_bfs static int n; static char map[][]; static int dist[][]; static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0; static int x1, y1, x2, y2; public static void main(String[] args) Scanner sca = new Scanner(System.in); n = sca.nextInt(); sca.nextLine(); map = new char[n][n]; dist = new int[n][n]; for (int i = 0; i < n; i++) //特别注意这里给第i行数组赋值是从下表0开始的,所以下面起始和结束的位置下标都要-1 这个地方卡了我好久..... map[i] = sca.next().toCharArray(); x1 = sca.nextInt(); y1 = sca.nextInt(); x2 = sca.nextInt(); y2 = sca.nextInt(); System.out.println(bfs()); static int bfs() Queue<Pair2> q = new LinkedList<>(); q.offer(new Pair2(x1 - 1, y1 - 1)); while (!q.isEmpty()) Pair2 pair2 = q.poll(); for (int i = 0; i < 4; i++) int a = pair2.x + dx[i], b = pair2.y + dy[i]; if (a < 0 || a >= n || b < 0 || b >= n) continue; if (map[a][b] == '1' || dist[a][b] > 0) continue; q.offer(new Pair2(a, b)); dist[a][b] = dist[pair2.x][pair2.y] + 1; if (pair2.x == x2 - 1 && pair2.y == y2 - 1) return dist[x2 - 1][y2 - 1]; return dist[x2 - 1][y2 - 1]; class Pair2 int x, y; public Pair2(int x, int y) this.x = x; this.y = y;
第三题: 马的遍历
输入输出样例
输入 #1复制
3 3 1 1输出 #1复制
0 3 2 3 -1 1 2 1 4说明/提示
数据规模与约定
对于全部的测试点,保证 1≤x≤n≤400,1≤y≤m≤400。
题目分析
难点
- 方向坐标:8连通
static int dx[] = 2, 2, 1, 1, -1, -1, -2, -2; static int dy[] = 1, -1, 2, -2, 2, -2, 1, -1;用队列存每一个位置的坐标
Queue<Pair> q = new LinkedList<>();//存坐标 q.offer(new Pair(1, 1));//将起始位置坐标放入队头坐标用一个类来存取
class Pair int x, y; public Pair(int x, int y) this.x = x; this.y = y;边界是什么
if (a < 1 || a > n || b < 1 || b > m) continue; if (map[a][b] >= 0) continue;//走过就不走了
题目代码
import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class 马的遍历_bfs static int n, m, x, y; static int map[][]; static int dx[] = 2, 2, 1, 1, -1, -1, -2, -2; static int dy[] = 1, -1, 2, -2, 2, -2, 1, -1; public static void main(String[] args) Scanner sca = new Scanner(System.in); n = sca.nextInt(); m = sca.nextInt(); x = sca.nextInt(); y = sca.nextInt(); map = new int[n + 1][m + 1]; for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) map[i][j] = -1; bfs(); for (int i = 1; i <= n; i++) for (int j = 1; j <= m; j++) System.out.printf("%-4d",map[i][j]); System.out.println(); static void bfs() Queue<Pair3> q = new LinkedList<>(); q.offer(new Pair3(x, y)); map[x][y] = 0;//给起点赋值 while (!q.isEmpty()) Pair3 pair3 = q.poll(); for (int i = 0; i < 8; i++) //8连通 int a = pair3.x + dx[i], b = pair3.y + dy[i]; if (a < 1 || a > n || b < 1 || b > m) continue; if (map[a][b] >= 0) continue;//走过就不走了 q.offer(new Pair3(a, b)); map[a][b] = map[pair3.x][pair3.y] + 1; class Pair3 int x, y; public Pair3(int x, int y) this.x = x; this.y = y;
多源BFS
第四题: 血色先锋队
输入格式
第 1 行:四个整数 n,m,a,b,表示军团矩阵有 n 行 m 列。有 a 个感染源,b 为血色敢死队中领主的数量。
接下来 a 行:每行有两个整数 x,y,表示感染源在第 x 行第 y 列。
接下来 b 行:每行有两个整数 x,y,表示领主的位置在第 x 行第 y 列。
输出格式
第 1 至 b 行:每行一个整数,表示这个领主感染瘟疫的时间,输出顺序与输入顺序一致。如果某个人的位置在感染源,那么他感染瘟疫的时间为 0。
输入输出样例
输入 #1复制
5 4 2 3 1 1 5 4 3 3 5 3 2 4输出 #1复制
3 1 3说明/提示
输入输出样例 1 解释
如下图,标记出了所有人感染瘟疫的时间以及感染源和领主的位置。
数据规模与约定
对于 100% 的数据,保证 1≤n,m≤500,1≤a,b≤105。
题目分析
思路和前面不同的是:本题从多个位置开始进行BFS
难点
如何处理多个位置同时进行BFS:
while (a-- > 0) //先将感染源放入队列成为队头 int x1 = sca.nextInt(); int y1 = sca.nextInt(); q.offer(new Pair4(x1, y1)); map[x1][y1] = 0;方向坐标:4连通
static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0;用队列存取每一个位置的坐标
while (!q.isEmpty()) Pair4 pair4 = q.poll();//队头出队坐标用一个类来存取
class Pair4 int x, y; public Pair4(int x, int y) this.x = x; this.y = y;边界是什么
if (a1 < 1 || a1 > n || b1 < 1 || b1 > m) continue; if (map[a1][b1] >= 0) continue;//感染过的就跳过- 终止条件是什么
本题是将整个地图上的全部位置赋值,即感染时间,所以当队列为空时终止
题目代码
import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class 血色先锋队_多源bfs static int n, m, a, b; static int map[][]; static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0; static Queue<Pair4> q = new LinkedList(); public static void main(String[] args) Scanner sca = new Scanner(System.in); n = sca.nextInt(); m = sca.nextInt(); a = sca.nextInt(); b = sca.nextInt(); map = new int[n + 1][m + 1]; for (int i = 1; i <= n; i++) //预处理 for (int j = 1; j <= m; j++) map[i][j] = -1; while (a-- > 0) //先将感染源放入队列 int x1 = sca.nextInt(); int y1 = sca.nextInt(); q.offer(new Pair4(x1, y1)); map[x1][y1] = 0; bfs(); while (b-- > 0) //在输入领主时就输出 int x2 = sca.nextInt(); int y2 = sca.nextInt(); System.out.println(map[x2][y2]); static void bfs() while (!q.isEmpty()) Pair4 pair4 = q.poll();//队头出队 for (int i = 0; i < 4; i++) int a1 = pair4.x + dx[i], b1 = pair4.y + dy[i]; if (a1 < 1 || a1 > n || b1 < 1 || b1 > m) continue; if (map[a1][b1] >= 0) continue;//感染过的就跳过 q.offer(new Pair4(a1, b1));//入队 map[a1][b1] = map[pair4.x][pair4.y] + 1; class Pair4 int x, y; public Pair4(int x, int y) this.x = x; this.y = y;
染色问题
第五题:填涂颜色
题目描述
由数字 0 组成的方阵中,有一任意形状闭合圈,闭合圈由数字 1 构成,围圈时只走上下左右 4 个方向。现要求把闭合圈内的所有空间都填写成 2。例如:6×6 的方阵(n=6),涂色前和涂色后的方阵如下:
0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 2 2 1 1 1 2 2 2 1 1 2 2 2 2 1 1 1 1 1 1 1
输入格式
每组测试数据第一行一个整数 n(1≤n≤30)。
接下来 n 行,由 0 和 1 组成的 n×n 的方阵。
方阵内只有一个闭合圈,圈内至少有一个 0。
//感谢黄小U饮品指出本题数据和数据格式不一样. 已修改(输入格式)
输出格式
已经填好数字 2 的完整方阵。
输入输出样例
输入 #1复制
6 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 1输出 #1复制
0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 2 2 1 1 1 2 2 2 1 1 2 2 2 2 1 1 1 1 1 1 1说明/提示
对于 100%的数据,1≤n≤30。
题目分析
思路:类似于灌溉问题
本题只需要将没标记过的0染色为2
因为围起来的难标记,所以换一个方向将外围的0标记即可。
注意的点:题目地图范围是从(1,1)~(n,n),我们是从(0,0)~(n+1,n+1),即扩大一圈最外圈全部为0,这样当我们搜索(bfs)即可满足将外围的0全部标记
难点
方向坐标:4连通
static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0;用队列存取每一个位置的坐标
q.offer(new Pair5(0, 0));//将队头入队列坐标用一个类来存取
class Pair5 int x, y; public Pair5(int x, int y) this.x = x; this.y = y;边界是什么
if (a1 < 1 || a1 > n || b1 < 1 || b1 > m) continue; if (map[a1][b1] >= 0) continue;//感染过的就跳过- 终止条件是什么
当队列为空时终止
题目代码
import java.util.LinkedList; import java.util.Queue; import java.util.Scanner; public class 填涂颜色_染色问题bfs static int n; static int map[][]; static boolean st[][]; static int dx[] = 0, 0, 1, -1; static int dy[] = 1, -1, 0, 0; static Queue<Pair5> q = new LinkedList(); public static void main(String[] args) Scanner sca = new Scanner(System.in); n = sca.nextInt(); map = new int[n + 2][n + 2]; st = new boolean[n + 2][n + 2]; for (int i = 1; i <= n; i++) //输入 for (int j = 1; j <= n; j++) map[i][j] = sca.nextInt(); st[0][0] = true; bfs(); for (int i = 1; i <= n; i++) //输出 for (int j = 1; j <= n; j++) if (map[i][j] == 0 && !st[i][j]) System.out.print(2 + " "); else System.out.print(map[i][j] + " "); System.out.println(); static void bfs() q.offer(new Pair5(0, 0));//将队头入队列 while (!q.isEmpty()) Pair5 pair5 = q.poll();//将队头出队列 for (int i = 0; i < 4; i++) int a = pair5.x + dx[i], b = pair5.y + dy[i]; if (a < 0 || a > n + 1 || b < 0 || b > n + 1) continue; if (map[a][b] == 1 || st[a][b]) continue;//值为1和标记过的跳过 q.offer(new Pair5(a, b)); st[a][b] = true;//做标记 class Pair5 int x, y; public Pair5(int x, int y) this.x = x; this.y = y;
蓝桥杯国赛 扩散(BFS-python)
蓝桥杯国赛 扩散(BFS-python)
题目描述
本题为填空题,只需要算出结果后,在代码中使用输出语句将所填结果输出即可。
小蓝在一张无限大的特殊画布上作画。
这张画布可以看成一个方格图,每个格子可以用一个二维的整数坐标表示。
小蓝在画布上首先点了一下几个点:(0, 0), (2020, 11), (11, 14), (2000, 2000)
只有这几个格子上有黑色,其它位置都是白色的。
每过一分钟,黑色就会扩散一点。具体的,如果一个格子里面是黑色,它就会扩散到上、下、左、右四个相邻的格子中,使得这四个格子也变成黑色(如果原来就是黑色,则还是黑色)。
请问,经过 2020分钟后,画布上有多少个格子是黑色的。
思路
这道题,首先我第一个思路就是可以利用BFS来解题,一级一级的扩散,一个时间一个时间的扩散,这样就可以很简单的得到最终结果
# https://www.lanqiao.cn/problems/1019/learning/
from collections import deque
q = deque([(0,0),(2020,11),(11,14),(2000,2000)])
f = [(1,0),(-1,0),(0,1),(0,-1)]
ans = 4
t = 2020
s = set()
for x,y in q:
s.add((x,y))
i = 0
while i < t:
# 每一次需要扩散的点的数目
length = len(q)
j = 0
while j < length:
x,y = q.popleft()
for nx,ny in f:
nx = x + nx
ny = y + ny
if (nx,ny) not in s:
ans += 1
s.add((nx,ny))
q.append((nx,ny))
j += 1
i += 1
print(ans)
但是我在看其他人做法的时候,发现有些方法是特别聪明的,由于我们是向上下左右扩散,画布也是无限的,所以几乎没有什么限制,所以我们只需要求,离我们已经画了的点距离2020就全是黑色的,这时候就不用BFS了,就是一个多重循环,这也是一个比较好的思想
# 扩散
#曼哈顿距离
#从A点只能上下移动到达B点需要的步数为:两点x的差的绝对值和两点y的差的绝对值相加。
spot, res = [[0,0], [2020,11], [11,14], [2000,2000]], 0
#虽然画布的大小是无限的,但是扩散的时间已明确,所以可知道所需画布的大小
for y in range(-2021,4022):
for x in range(-2021,4042):
#判断当前循环到的点是否在以上spot的点能触及到的范围
for s in spot:
if abs(s[1]-y)+abs(s[0]-x) <= 2020:
res += 1
#break是因为当前的(x,y)点已经有spot中的一个点扩散到了,不需要其他点再对它进行判断,避免重复累加。
break
print(res)
所以最终答案就是
20312088
以上是关于蓝桥杯BFS从此搞懂搜索题的套路! | 入门必看的主要内容,如果未能解决你的问题,请参考以下文章