hdu3635dragonballs(带权并查集)

hyp1231 hyp1231     2022-09-06     386

关键词:

题目链接:

  http://acm.hdu.edu.cn/showproblem.php?pid=3635

题目描述:

Dragon Balls



Problem Description
Five hundred years later, the number of dragon balls will increase unexpectedly, so it‘s too difficult for Monkey King(WuKong) to gather all of the dragon balls together. 
技术分享

His country has N cities and there are exactly N dragon balls in the world. At first, for the ith dragon ball, the sacred dragon will puts it in the ith city. Through long years, some cities‘ dragon ball(s) would be transported to other cities. To save physical strength WuKong plans to take Flying Nimbus Cloud, a magical flying cloud to gather dragon balls. 
Every time WuKong will collect the information of one dragon ball, he will ask you the information of that ball. You must tell him which city the ball is located and how many dragon balls are there in that city, you also need to tell him how many times the ball has been transported so far.
 

 

Input
The first line of the input is a single positive integer T(0 < T <= 100). 
For each case, the first line contains two integers: N and Q (2 < N <= 10000 , 2 < Q <= 10000).
Each of the following Q lines contains either a fact or a question as the follow format:
  T A B : All the dragon balls which are in the same city with A have been transported to the city the Bth ball in. You can assume that the two cities are different.
  Q A : WuKong want to know X (the id of the city Ath ball is in), Y (the count of balls in Xth city) and Z (the tranporting times of the Ath ball). (1 <= A, B <= N)
 

 

Output
For each test case, output the test case number formated as sample output. Then for each query, output a line with three integers X Y Z saparated by a blank space.
 

 

Sample Input
2 3 3 T 1 2 T 3 2 Q 2 3 4 T 1 2 Q 1 T 1 3 Q 1
 

 

Sample Output
Case 1: 2 3 0 Case 2: 2 2 1 3 3 2

 

题目大意:

  i 球开始在 i 城市,然后现在 T A B 表示把A球和同城市的球移动到B球所在的城市

  Q A 表示求A所在的城市、A所在的城市有几个球、A被移动了几次

思路:

  想并查集的森林表示,移动了多少次实际就是到树根的距离(默认两点间的距离为1)

  用三个数组记录状态

  pre[i] 表示i球所在城市

  num[i] 表示i城市有几个球

  bt[i] 表示i球被移动了几次(就是i到树根的距离)

  然后每次合并时让pre[ra] = rb 并 bt[ra] = 1

 

代码:

 1 #include <cstdio>
 2 using namespace std;
 3 
 4 const int N = 10010;
 5 
 6 int n, q, pre[N], num[N], bt[N];
 7 //pre[i] 表示i球所在城市
 8 //num[i] 表示i城市有几个球
 9 //bt[i] 表示i球被移动了几次(就是i到树根的距离)
10 
11 void init(int cas) {
12     printf("Case %d:
", cas);
13     for (int i = 1; i <= n; ++i)
14         pre[i] = i, num[i] = 1, bt[i] = 0;
15 }
16 
17 int find(int a) {
18     if (pre[a] == a)return a;
19     int tmp = pre[a];
20     pre[a] = find(pre[a]);
21     bt[a] = bt[a] + bt[tmp];
22     return pre[a];
23 }
24 
25 void merge(int a, int b) {
26     int ra = find(a), rb = find(b);
27     pre[ra] = rb, bt[ra] = 1;    //ra被移动了一次
28     num[rb] += num[ra], num[ra] = 0;
29     find(a);
30 }
31 
32 int main() {
33     int t, a, b;
34     scanf("%d", &t);
35     for (int o = 1; o <= t; ++o) {
36         scanf("%d%d", &n, &q);
37         init(o);
38         char tmp[2];
39         for (int i = 0; i < q; ++i) {
40             scanf("%1s", tmp);
41             if (tmp[0] == T) {
42                 scanf("%d%d", &a, &b);
43                 merge(a, b);
44             } else {
45                 scanf("%d", &a);
46                 int ra = find(a);
47                 printf("%d %d %d
", ra, num[ra], bt[a]);
48             }
49         }
50     }
51 }

 

Dragon Balls

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 6373    Accepted Submission(s): 2398


Problem Description
Five hundred years later, the number of dragon balls will increase unexpectedly, so it‘s too difficult for Monkey King(WuKong) to gather all of the dragon balls together. 
技术分享

His country has N cities and there are exactly N dragon balls in the world. At first, for the ith dragon ball, the sacred dragon will puts it in the ith city. Through long years, some cities‘ dragon ball(s) would be transported to other cities. To save physical strength WuKong plans to take Flying Nimbus Cloud, a magical flying cloud to gather dragon balls. 
Every time WuKong will collect the information of one dragon ball, he will ask you the information of that ball. You must tell him which city the ball is located and how many dragon balls are there in that city, you also need to tell him how many times the ball has been transported so far.
 

 

Input
The first line of the input is a single positive integer T(0 < T <= 100). 
For each case, the first line contains two integers: N and Q (2 < N <= 10000 , 2 < Q <= 10000).
Each of the following Q lines contains either a fact or a question as the follow format:
  T A B : All the dragon balls which are in the same city with A have been transported to the city the Bth ball in. You can assume that the two cities are different.
  Q A : WuKong want to know X (the id of the city Ath ball is in), Y (the count of balls in Xth city) and Z (the tranporting times of the Ath ball). (1 <= A, B <= N)
 

 

Output
For each test case, output the test case number formated as sample output. Then for each query, output a line with three integers X Y Z saparated by a blank space.
 

 

Sample Input
2 3 3 T 1 2 T 3 2 Q 2 3 4 T 1 2 Q 1 T 1 3 Q 1
 

 

Sample Output
Case 1: 2 3 0 Case 2: 2 2 1 3 3 2




















hdu3635dragonballs(带权并查集)(代码片段)

DragonBallsTimeLimit:2000/1000MS(Java/Others)    MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):10628    AcceptedSubmission(s):3802ProblemDescriptionFivehundredyearslater,thenumberofdragonballswillincreaseunexpectedly,soit‘stoodifficultforMonkeyKing... 查看详情

hdu3635dragonballs(并查集)

DragonBallsTimeLimit:2000/1000ms(Java/Other)   MemoryLimit:32768/32768K(Java/Other)TotalSubmission(s):64   AcceptedSubmission(s):26Font: TimesNewRoman | Ve 查看详情

hdu-3635dragonballs并查集(代码片段)

题意:1~N个龙珠,放在1~N个城市,有两种操作:TAB将A所再城市的所有球转移到B所在的城市。QX询问X所在的城市pls,该城市中龙珠数量nm,以及龙珠转移次数trs题解:并查集模板题,顺带更新一些数据。pls不必更新,因为X所在的... 查看详情

hdu1289abug'slife(带权并查集)(代码片段)

HDU1289带权并查集ProblemDescriptionBackgroundProfessorHopperisresearchingthesexualbehaviorofararespeciesofbugs.Heassumesthattheyfeaturetwodifferentgendersandthattheyonlyinteractwithbugsoftheoppositegender. 查看详情

hdu3038howmanyanswersarewrong(带权并查集)

HowManyAnswersAreWrongProblemDescriptionTTandFFare...friends.Uh...veryverygoodfriends-________-bFFisabadboy,heisalwayswooingTTtoplaythefollowinggamewithhim.Thisisaveryhumdrumgame.Tobeginwith,TTshouldw 查看详情

hdu3038howmanyanswersarewrong(带权并查集)

传送门DescriptionTTandFFare...friends.Uh...veryverygoodfriends-________-bFFisabadboy,heisalwayswooingTTtoplaythefollowinggamewithhim.Thisisaveryhumdrumgame.Tobeginwith,TTshouldwritedownasequenceofinteger 查看详情

带权并查集复习-hdu3038

TTandFFare...friends.Uh...veryverygoodfriends-________-bFFisabadboy,heisalwayswooingTTtoplaythefollowinggamewithhim.Thisisaveryhumdrumgame.Tobeginwith,TTshouldwritedownasequenceofintegers-_-!!(bored). 查看详情

hdu3038howmanyanswersarewrong[带权并查集]

HowManyAnswersAreWrongTimeLimit:2000/1000MS(Java/Others)    MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):6336    AcceptedSubmission(s):2391ProblemDes 查看详情

hdu_3172_带权并查集

VirtualFriendsTimeLimit:4000/2000MS(Java/Others)    MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):8229    AcceptedSubmission(s):2363ProblemDescription 查看详情

hdu2818(带权并查集)

题目连接:http://acm.hdu.edu.cn/showproblem.php?pid=2818还是不熟练。。。1#include<cstdio>2#include<cstring>3constintmaxn=30005;4intf[maxn],under[maxn],sum[maxn];56voidinit()7{8for(inti=0;i<=maxn;i++ 查看详情

hdu3038howmanyanswersarewrong——带权并查集

题目链接:http://acm.split.hdu.edu.cn/showproblem.php?pid=3038 HowManyAnswersAreWrongTimeLimit:2000/1000MS(Java/Others)    MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):1 查看详情

hdu-3038带权并查集

这道题我拖了有8个月...今天放假拉出来研究一下带权的正确性,还有半开半闭的处理还有ab指向的一系列细节问题#include<iostream>#include<algorithm>#include<cstdio>#include<cstring>usingnamespacestd;constintmaxn=200010;intp[maxn],r[m 查看详情

带权并查集hdu3047zjnustadium

http://acm.hdu.edu.cn/showproblem.php?pid=3047【题意】http://blog.csdn.net/hj1107402232/article/details/9921311【Accepted】1#include<iostream>2#include<cstdio>3#include<cstring>4#include&l 查看详情

hdu3038howmanyanswersarewrong(带权并查集)(代码片段)

HowManyAnswersAreWrongTimeLimit:2000/1000MS(Java/Others)    MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):14876    AcceptedSubmission(s):5237ProblemDe 查看详情

hdu3038:howmanyanswersarewrong(带权并查集)(代码片段)

HowManyAnswersAreWrongTimeLimit:2000/1000MS(Java/Others)    MemoryLimit:32768/32768K(Java/Others)TotalSubmission(s):16338    AcceptedSubmission(s):5724题目链接:http 查看详情

hdu-3038/3048(带权并查集)(待补)

题目链接:点我点我题意:题解:两题代码差不多,放个3047的。1#include<cstdio>2#include<iostream>3#include<algorithm>4usingnamespacestd;56constintN=200010;7intFather[N],value[N];89intfind(intx){10if(x==Father[x]) 查看详情

hdu3047zjnustadium(带权并查集,难想到)(代码片段)

M-ZjnuStadiumTimeLimit:1000MS    MemoryLimit:32768KB    64bitIOFormat:%I64d&%I64uSubmitStatusDescriptionIn12thZhejiangCollegeStudentsGames2007,therewasanews 查看详情

hdu3038howmanyanswersarewrong(带权并查集)

题目链接:http://acm.split.hdu.edu.cn/showproblem.php?pid=1272题目大意:有n条信息,每条信息都给出区间l到r的值,如果后面出现的信息与前面的矛盾,那么就算是一个错误信息,问一共给出多少错误信息。比如1给出三条信息1410,125,346... 查看详情