
tarjan
19992144
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
711D
D. Directed Roads time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output ZS the Coder and Chris the Baboon has explored Uday原创 2016-08-30 13:53:39 · 250 阅读 · 0 评论 -
tarjan
void tarjan(int u) { dfn[u]=low[u]=++stamp; used[u]=1;//进栈 s.push(u); for(int i=0;i { int v=graph[u][i]; if(used[v]==0) { tarjan(v);//原创 2016-08-30 14:05:24 · 216 阅读 · 0 评论