摘要: 强连通 Tarjan 1 #include <iostream> 2 #include <cstdio> 3 #include <algorithm> 4 #define ll long long 5 struct node{ 6 ll next,v; 7 }edge[1001]; 8 const 阅读全文
posted @ 2017-08-11 16:44 Michael_Zhuang 阅读(176) 评论(0) 推荐(0) 编辑