标签:植物 哪些 ++ 9.png rank 编号 不能 for ring
AC
1 #include<iostream> 2 #include<cstring> 3 4 using namespace std; 5 6 const int MAX_N = 1001*1001; 7 8 int par[MAX_N]; // 父亲 9 int rank[MAX_N]; // 树的高度 10 11 void Init(int n) 12 { 13 memset(rank, 0, sizeof(rank)); 14 for(int i=0;i<n;i++) 15 par[i] = i; 16 } 17 18 // 查询树的根 19 int find(int x) 20 { 21 return (par[x] == x)?x:(par[x] = find(par[x])); 22 } 23 24 // 合并 x和 y所属的集合 25 void unite(int x, int y) 26 { 27 x = find(x); 28 y = find(y); 29 if(x == y) return; 30 if(rank[x] == rank[y]){ 31 par[x] = y; 32 } 33 else{ 34 par[y] = x; 35 if(rank[x] == rank[y]) rank[x]++; 36 } 37 } 38 39 bool same(int x, int y) 40 { 41 return find(x) == find(y); 42 } 43 44 int main() 45 { 46 int m, n, k, x, y; 47 while(cin>>m>>n) 48 { // 居然是从 1 开始的... 49 int c = m*n+1, s = 0; 50 Init(c); 51 cin>>k; 52 while(k--) 53 { 54 cin>>x>>y; 55 unite(x, y); 56 } 57 // 所以不能有 0 58 while(--c && c != 0) 59 { 60 if(par[c] == c) s++; 61 } 62 cout<<s<<endl; 63 s = 0; 64 } 65 66 return 0; 67 }
2019-02-10
16:32:52
标签:植物 哪些 ++ 9.png rank 编号 不能 for ring
原文地址:https://www.cnblogs.com/mabeyTang/p/10359463.html