蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码) 摘要:```cpp #include using namespace std; char graph[105][105]; bool visited[105][105]; int sx, sy,…… 题解列表 2020年03月03日 0 点赞 0 评论 537 浏览 评分:6.9
蓝桥杯2015年第六届真题-穿越雷区-题解(C++代码)两种方法(dfs+bfs) 摘要:**方法**:dfs,dfs求最短路 **dfs**: **思路:** - 终止条件:走到‘B’ - 往下走条件:下一个点没被访问过,在地图之内,符合走一正一负 1. !vis[x][y]没…… 题解列表 2020年02月22日 0 点赞 0 评论 829 浏览 评分:9.9
蓝桥杯2015年第六届真题-穿越雷区-题解(Java代码) 摘要:```java import java.util.Scanner; public class Main { public static char[][] map = new char…… 题解列表 2020年02月22日 0 点赞 0 评论 431 浏览 评分:0.0
穿越雷区-题解(C++代码) 一遍过,新手上路DFS 摘要: #include using namespace std; int n; //a存,b标记 char a[101][101]; char b[101][101]; …… 题解列表 2020年02月15日 0 点赞 0 评论 636 浏览 评分:9.9
蓝桥杯2015年第六届真题-穿越雷区 (C++代码) 摘要:本题用最典型的bfs算法,定义了一个保存了x,y坐标,步数,权值的结构体,要记好结构体赋值的公式,希望大家指点。 ```cpp #include #include using namesp…… 题解列表 2020年02月14日 0 点赞 0 评论 429 浏览 评分:9.9
旋桜-蓝桥杯2015年第六届真题-穿越雷区-bfs(C++代码) 摘要:最短路径用广搜(BFS) 话不多说 上代码 ```cpp #include #include using namespace std; struct node{ int …… 题解列表 2020年01月17日 0 点赞 0 评论 572 浏览 评分:9.6
蓝桥杯2015年第六届真题-穿越雷区-题解(Java代码) 摘要:import java.util.Scanner; public class Main { static int Ai = 0; static int Aj = 0; …… 题解列表 2019年12月07日 0 点赞 0 评论 519 浏览 评分:6.0
蓝桥杯2015年第六届真题-穿越雷区 (C++代码) 摘要:解题思路: 最普通的一道搜索题目,dfs跟bfs都能做,需要注意的是每一行的两个数据中间有空格。注意事项:参考代码:#include <iostream>#include <algo…… 题解列表 2019年02月09日 0 点赞 0 评论 651 浏览 评分:2.0
蓝桥杯2015年第六届真题-穿越雷区 (C++代码) 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <algorithm> #includ…… 题解列表 2018年12月12日 0 点赞 0 评论 451 浏览 评分:0.0
蓝桥杯2015年第六届真题-穿越雷区 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; struct s{ int x,y,s; }q[1000]; cha…… 题解列表 2018年11月06日 0 点赞 0 评论 602 浏览 评分:0.0