旋桜-蓝桥杯2015年第六届真题-穿越雷区-bfs(C++代码) 摘要:最短路径用广搜(BFS) 话不多说 上代码 ```cpp #include #include using namespace std; struct node{ int …… 题解列表 2020年01月17日 0 点赞 0 评论 559 浏览 评分:9.6
蓝桥杯2015年第六届真题-穿越雷区 (C++代码) 摘要:本题用最典型的bfs算法,定义了一个保存了x,y坐标,步数,权值的结构体,要记好结构体赋值的公式,希望大家指点。 ```cpp #include #include using namesp…… 题解列表 2020年02月14日 0 点赞 0 评论 414 浏览 评分: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 评论 623 浏览 评分:9.9
蓝桥杯2015年第六届真题-穿越雷区-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static char[][] map = new char…… 题解列表 2020年02月22日 0 点赞 0 评论 411 浏览 评分:0.0
蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码)两种方法(dfs+bfs) 摘要:**方法**:dfs,dfs求最短路 **dfs**: **思路:** - 终止条件:走到‘B’ - 往下走条件:下一个点没被访问过,在地图之内,符合走一正一负 1. !vis[x][y]没…… 题解列表 2020年02月22日 0 点赞 0 评论 813 浏览 评分:9.9
蓝桥杯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
蓝桥杯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 评论 562 浏览 评分: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 评论 350 浏览 评分:2.4
蓝桥杯2015年第六届真题-穿越雷区-题解(C语言代码) 摘要:#include <stdio.h> int b[110][110],n,step=100000; char a[110][110]; int dx[4]={0,1,-1,0}; int dy…… 题解列表 2020年08月11日 0 点赞 0 评论 534 浏览 评分: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 评论 457 浏览 评分:9.9