强连通分量
ToheartZhang
这个作者很懒,什么都没留下…
展开
-
CODEVS 1332 上白泽慧音
//top++ //强连通分量的数组要和点的数组一样大 #include<cstdio> #include<iostream> #include<vector> using namespace std; const int maxn = 5050; vector<int> g[5050]; int low[maxn], stack[maxn], instack[maxn], dfn[maxn],原创 2017-05-10 10:33:10 · 246 阅读 · 0 评论 -
CODEVS 4511 信息传递
//即求不为1的最小的强连通分量 #include<cstdio> #include<iostream> using namespace std; const int maxn = 200050; struct node{ int hou,ne; }g[maxn]; int stack[maxn],instack[maxn],dfn[maxn],low[maxn]; int top = 0原创 2017-05-10 14:18:54 · 297 阅读 · 0 评论