Alex0319
Alex0319
全部文章
分类
PAT(11)
poj(16)
算法(1)
题解(30)
归档
标签
去牛客网
登录
/
注册
欲买桂花同载酒,终不似,少年游
保持好奇,保持积极
全部文章
(共5篇)
poj 2243 47ms bfs
#include<cstdio> #include<queue> #include<cstring> using namespace std; //bfs水题 struct Node { int x; int y; int steps; ...
poj
BFS
2019-08-03
1
530
poj2251 16ms BFS
#include<cstdio> #include<queue> #include<cstring> using namespace std; //bfs水题,只是换成了三维 int l,r,c; char matrix[35][35][35]; bool vis...
poj
BFS
2019-07-30
1
501
poj1915 266ms bfs
#include #include #include using namespace std; //bfs easy struct Node { int x; int y; int steps; Node(int a,int b,int c):x(a),y(b),st...
poj
BFS
2019-07-29
0
502
poj3984 bfs开始的地方。保存路径难点
#include<cstdio> using namespace std; struct Node { int x;//当前结点的坐标 int y;//当前结点的坐标 int pre;//前驱 } q[200]; bool vis[10][10];//是否访问 i...
poj
BFS
2019-07-15
0
504
poj1979 bfs
#include<cstdio> #include<queue> #include<cstring> using namespace std; //简单bfs开始把行列搞错了 struct Node { int x; int y;//坐标 ...
poj
BFS
2019-07-20
0
449