
连通图
WsMiracle
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Network UVA - 315 求割点数量
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <queue> #include <cmath> #include <vector>using namespace std;const int MaxM = 1e5;int n, cnt; bool f[101][101], m原创 2017-09-01 10:53:09 · 252 阅读 · 0 评论 -
A - Network of Schools POJ - 1236 强连通分量缩点
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #include <queue> #include <cmath> #include <vector> #include <stack>using namespace std;int n, m; vector<int> g[101]; bool原创 2017-09-01 10:54:32 · 405 阅读 · 0 评论