1825: 蓝桥杯2015年第六届真题-穿越雷区-bfs 摘要: #include #include #include using namespace std; int n; char maze[105][1…… 题解列表 2024年03月31日 0 点赞 0 评论 106 浏览 评分:0.0
[蓝桥杯2015年第六届真题-穿越雷区] BFS 宽搜最短路 摘要:解题思路: 求最短路用bfs 模板题 注意判断符号交替参考代码:#include <bits/stdc++.h>using namespace std;const int N = 110;int di…… 题解列表 2023年11月20日 0 点赞 0 评论 115 浏览 评分:9.9
穿越雷区 BFS解法 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; const int N = 101; bool vis[N][N] =…… 题解列表 2022年07月07日 0 点赞 0 评论 93 浏览 评分:0.0
蓝桥杯2015年第六届真题-穿越雷区(BFS, 代码易懂) 摘要: ##### 题目要求的是找最短路径,所以最容易想到、最简便的方法就是BFS 不可走的情况:越界、已访问过、map[now.r][now.c]==map[tr][tc] ```cpp #i…… 题解列表 2022年04月04日 0 点赞 0 评论 220 浏览 评分: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年第六届真题-穿越雷区-题解(C++代码) 摘要:###分析: 这道题整体来说还是一道搜索题,有点类似解救小哈那道题,就是dfs的话有点麻烦的地方是如何处理题目中**它必须交替地穿越正能量辐射区和负能量辐射区才能保持正常运转**,我把+、-处理成为…… 题解列表 2020年10月15日 0 点赞 2 评论 828 浏览 评分:7.5
蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码) 摘要:### 解题思路:bfs模板题,从A向四个方向出发,如果下一个位置的符合和当前相同并且没有越界也没有来过,那么就可以去到下一个位置。 ```cpp #include #define x fi…… 题解列表 2020年10月09日 0 点赞 0 评论 357 浏览 评分:0.0
蓝桥杯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
蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码) 摘要:``` #include using namespace std; int n; char map[105][105]; int vis[105][105]; int dir[4][…… 题解列表 2020年07月01日 0 点赞 0 评论 349 浏览 评分:2.4
蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码) 摘要:```cpp #include using namespace std; char graph[105][105]; bool visited[105][105]; int sx, sy,…… 题解列表 2020年03月03日 0 点赞 0 评论 524 浏览 评分:6.9