/* 问题描述: 并查集模板 */ #include using namespace std; const int N = 100; // 节点数量 int f[N]; int init() { // 初始化 for (int i=0; i