洛谷1726 上白泽慧音
摘要:
"原题链接" 裸的$tarjan$找强连通分量,记录最大强连通分量即可,注意字典序。 cpp include using namespace std; const int N = 5010; const int M = 1e5 + 10; int fi[N], di[M], ne[M], dfn[N 阅读全文
posted @ 2018-11-03 11:03 Iowa_Battleship 阅读(101) 评论(0) 推荐(0) 编辑