会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
oceans_of_stars
成为尘埃中的绽放,成为黑暗中的远航
博客园
首页
新随笔
联系
订阅
管理
2024年3月8日
tarjan板子整理
摘要: 缩点 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)
编辑
公告