蓝桥杯2015年第六届真题-穿越雷区 (C语言代码) 摘要:解题思路:假设初始状态是雷区中所有辐射点未曾被访问,则深度优先搜索可访问从起点可达的其中某个辐射点,从该点出发,占用该点,然后从四个方向找到下一步的位置,依次从未被占用且与上一步相异的邻接点出发深度优…… 题解列表 2018年07月20日 3 点赞 0 评论 1711 浏览 评分:9.9
c语言网的oj好松-穿越雷区 摘要:```cpp #include #include using namespace std; int n,x1,x2,y1,y2; char mp[105][105]; int vis[…… 题解列表 2022年02月11日 0 点赞 1 评论 78 浏览 评分:9.9
蓝桥杯2015年第六届真题-穿越雷区(BFS, 代码易懂) 摘要: ##### 题目要求的是找最短路径,所以最容易想到、最简便的方法就是BFS 不可走的情况:越界、已访问过、map[now.r][now.c]==map[tr][tc] ```cpp #i…… 题解列表 2022年04月04日 0 点赞 0 评论 220 浏览 评分:9.9
python-穿越雷区 摘要:解题思路:深度搜索。①定位A点的坐标②开始搜索,依次搜索上下左右是否能走,若能,则走。③直到找到B,判断所用步长是否最小,若是,更新最小值。注意事项:参考代码:from cmath import in…… 题解列表 2022年01月24日 0 点赞 0 评论 203 浏览 评分:9.9
蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; char a[100][100]; int n,vis[100][100]…… 题解列表 2020年08月18日 0 点赞 0 评论 456 浏览 评分:9.9
穿越雷区-题解(C++代码) 一遍过,新手上路DFS 摘要: #include using namespace std; int n; //a存,b标记 char a[101][101]; char b[101][101]; …… 题解列表 2020年02月15日 0 点赞 0 评论 622 浏览 评分:9.9
BFS的一道模板题 摘要:#####这题太水了 ```java import java.util.*; public class L141 { static char num[][]=new char[101][10…… 题解列表 2024年03月16日 0 点赞 0 评论 129 浏览 评分:9.9
蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码)两种方法(dfs+bfs) 摘要:**方法**:dfs,dfs求最短路 **dfs**: **思路:** - 终止条件:走到‘B’ - 往下走条件:下一个点没被访问过,在地图之内,符合走一正一负 1. !vis[x][y]没…… 题解列表 2020年02月22日 0 点赞 0 评论 812 浏览 评分:9.9
DFS啊啊啊啊啊啊!!! 摘要:```cpp #include using namespace std; int n; int vis[100][100] = {0}; char arr[100][100]; int b…… 题解列表 2022年03月12日 0 点赞 0 评论 249 浏览 评分:9.9
蓝桥杯2015年第六届真题-穿越雷区 (Python代码)BFS算法 摘要:```python n=int(input()) df=[[0 for i in range(n)] for j in range(n)] for i in range(n): STR…… 题解列表 2020年03月25日 0 点赞 0 评论 559 浏览 评分:9.9