摘要: #include<iostream> using namespace std; const int N=100010; int p[N]; int find(int x){ if(p[x]!=x) p[x]=find(p[x]); return p[x]; } int main(){ int n,m 阅读全文
posted @ 2023-04-18 16:13 艾鑫4646 阅读(10) 评论(0) 推荐(0) 编辑