摘要: tarjan求强连通分量的裸题复习,可当做模板。 1 #include 2 #include 3 #include 4 using namespace std; 5 6 const int N = 10001; 7 const int M = 100000; 8 int dfn[N], lo... 阅读全文
posted @ 2015-04-15 21:55 hxy_has_been_used 阅读(128) 评论(0) 推荐(0) 编辑