摘要: 并查集(递归写法) #include<bits/stdc++.h> using namespace std; const int X = 10010; int f[X]; int n, m; //初始化 void init() { for (int i = 0; i < X; i++) { f[i] 阅读全文
posted @ 2024-08-14 19:09 高浩杰 阅读(39) 评论(0) 推荐(0)