摘要: 1 //求强联通分量 2 #include<bits/stdc++.h> 3 const int N=1e5+7; 4 const int M=1e5+7; 5 struct node{ 6 int v,next; 7 }e[M]; 8 int head[N],cnt; 9 int p[N],st[ 阅读全文
posted @ 2020-09-12 20:24 Lovaer 阅读(117) 评论(0) 推荐(0) 编辑