摘要: #include<iostream> using namespace std; const int N = 1e4+10; int p[N]; int t; int find(int x){ if(p[x] != x) p[x] = find(p[x]); return p[x]; } int ma 阅读全文
posted @ 2021-04-11 14:33 晓尘 阅读(64) 评论(0) 推荐(0)