hdu-3635 Dragon Balls(并查集)
生活随笔
收集整理的這篇文章主要介紹了
hdu-3635 Dragon Balls(并查集)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題意:
初始化每個城市都有一個龍珠
進行兩步操作
T ?A ?B 就是把A所在的城市的龍珠數都運到城市B中
Q ?A ? 即要輸出 A所在的城市 、 A所在城市的個數、A移動的次數
本題貌似不需要把原來A城市的龍珠數清0,每個根節(jié)點最多移動一次
#include<stdio.h> #include<string.h> #include<iostream> using namespace std; const int M = 10005; int father[M]; int rank[M]; int move[M]; int n,q; void init() {for(int i = 0; i <= n; i++){father[i] = i;rank[i] = 1;move[i] = 0;} } int find(int x)//并查集的精髓&&路徑壓縮----個人太水至今才明白 {if(x != father[x]){int t = father[x];father[x] = find(father[x]);move[x] += move[t];}return father[x]; } void Union(int a,int b) {int x = find(a);int y = find(b);if(x!=y){father[x] = y;rank[y] += rank[x];move[x] = 1;} } int main() {char c;int t,x,y,Case = 1;;scanf("%d",&t);while(t--){printf("Case %d:\n",Case++);scanf("%d%d",&n,&q);init();for(int i = 0; i < q; i++){getchar();scanf("%c",&c);if(c == 'T'){scanf("%d%d",&x,&y);Union(x,y);}else{scanf("%d",&x);y = find(x);printf("%d %d %d\n",y,rank[y],move[x]);}}} }與50位技術專家面對面20年技術見證,附贈技術全景圖
總結
以上是生活随笔為你收集整理的hdu-3635 Dragon Balls(并查集)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: docker安装rabbitmq步骤
- 下一篇: 因为一次宕机,终于搞透了 Kafka 高