摘要: 缩点 stack<int>q; void tarjan(int u) { pre[u]=low[u]=++cnt; q.push(u); vis[u]=1; for(int i=head[u];i;i=nxt[i]) { int y=to[i]; if(!pre[y]) { tarjan(y); l 阅读全文
posted @ 2024-03-08 09:19 _君の名は 阅读(24) 评论(0) 推荐(1) 编辑