摘要:
洛谷P3375 不好说,感性理解就行,上代码: #include<bits/stdc++.h> using namespace std; const int N = 1e6 + 10; int n, m, nx[N]; string s, t; int main() { cin >> s >> t, 阅读全文
摘要:
\(tarjan\) 大合辑 1.割边: #include<bits/stdc++.h> using namespace std; const int N = 1e5 + 10, M = 1e6 + 10; int hd[N], nt[M], to[M], tot = 1;/////// tot = 阅读全文