Dragon Balls【并查集,有技巧】

Dragon BallsTime Limit: 2000/1000 MS (Java/Others)Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 4290Accepted Submission(s): 1649

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

23 3T 1 2T 3 2Q 23 4T 1 2Q 1T 1 3Q 1

Sample Output

Case 1:2 3 0Case 2:2 2 13 3 2

题意:n个龙珠,编号为1…n,分别在编号1….n的城市中。有两种操作,T A B,把A所在的城市的龙珠全部放到B所在的城市里;Q A,,查询龙珠A所在的城市,以及城市现在有几个球,以及A被转移了几次。

主要是记录移动次数,其实每个根结点都是最多移动一次的,所以记录移动次数把自己的加上父亲结点的就是移动总数了

#include <cstdio>#include <cstring>#include <algorithm>#define maxn 10000 + 100using namespace std;int per[maxn];int num[maxn];int mov[maxn];int N, M;void init(){for(int i = 1; i <= N; ++i){per[i] = i;num[i] = 1;mov[i] = 0;}}int Find(int x){if(x == per[x]) return x;else{int t = per[x];per[x] = Find(per[x]);mov[x] += mov[t];}return per[x];}void jion (int a, int b){int fa = Find(a);int fb = Find(b);if(fa != fb){per[fa] = fb;num[fb] += num[fa];mov[fa]++;}}int main (){int T;int k = 0;scanf("%d", &T);while(T–){scanf("%d%d", &N, &M);init();printf("Case %d:\n", ++k);while(M–){char str[5];int a, b;scanf("%s", str);if(str[0] == 'T'){scanf("%d%d", &a, &b);jion (a, b);}else {scanf("%d", &a);int d = Find(a);printf("%d %d %d\n", d, num[d], mov[a]);}}}return 0;}

版权声明:本文为博主原创文章,未经博主允许不得转载。

你在无垠的海边第一次听到了自己心跳的声音,

Dragon Balls【并查集,有技巧】

相关文章:

你感兴趣的文章:

标签云: