Tarjan

1 #include <iostream> 2 3 using namespace std; 4 5 const int MAXN=100010; 6 const int MAXM=100010; 7 8 struct Edge 9 { 10 int to,next,w; 11 }e[MAXM*2]
posted @ 2021-12-04 21:46  Hell0er  阅读(46)  评论(0编辑  收藏  举报