zzu_lmc
zzu_lmc
全部文章
算法
acm(2)
codeforces(5)
java(3)
leetcode(1)
other(1)
博弈论(2)
并查集(1)
数论(1)
未归档(133)
水题(1)
百度之星(1)
莫比乌斯反演(1)
计算几何(1)
贪心(3)
归档
标签
去牛客网
登录
/
注册
zzu_lmc的博客
全部文章
/ 算法
(共3篇)
uva Fire 11624 bfs
Fire! Joe works in a maze. Unfortunately,portions of the maze have caught on fire, and the owner of the maze neglectedto create a fire escape plan. He...
bfs
2018-04-11
0
483
zoj 4020 bfs
#include<cstdio> #include<vector> #include<queue> using namespace std; const int maxn=1e5+4; struct Node { int x,y; int dis;...
bfs
vector
2018-04-10
0
424
uva 10047 bfs 独轮车
#include<cstdio> #include<cstring> #include<queue> #include<algorithm> using namespace std; const int INF=0x3f3f3f3f; const in...
bfs
2018-04-12
0
452