摘要: 题目链接:https://www.luogu.com.cn/problem/P1726 题目大意:求一个有向图的最大强连通分量。 解题思路:tarjan。 示例代码: #include <bits/stdc++.h> using namespace std; const int maxn = 505 阅读全文
posted @ 2020-08-24 14:45 quanjun 阅读(147) 评论(0) 推荐(0) 编辑