摘要: void tarjan(int now) { s.push(now); in[now]=1; dfn[now]=low[now]=++tot;///注意low也要赋初值 for(int i=head[now];i;i=nxt[i]) { if(in[to[i]]) low[now]=min(low[ 阅读全文
posted @ 2021-09-10 15:51 T_X蒻 阅读(16) 评论(0) 推荐(0) 编辑