日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

hdu-3635 Dragon Balls(并查集)

發布時間:2025/3/16 编程问答 23 豆豆
生活随笔 收集整理的這篇文章主要介紹了 hdu-3635 Dragon Balls(并查集) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

題意:

初始化每個城市都有一個龍珠

進行兩步操作

T ?A ?B 就是把A所在的城市的龍珠數都運到城市B中

Q ?A ? 即要輸出 A所在的城市 、 A所在城市的個數、A移動的次數

本題貌似不需要把原來A城市的龍珠數清0,每個根節點最多移動一次

#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(并查集)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。