[LA] 3027

A very big corporation is developing its corporative network. In the beginning each of the N enterprises of the corporation, numerated from 1 to N, organized its own computing and telecommunication center. Soon, for amelioration of the services, the corporation started to collect some enterprises in clusters, each of them served by a single computing and telecommunication center as follow. The corporation chose one of the existing centers I (serving the cluster A) and one of the enterprises J in some cluster B (not necessarily the center) and link them with telecommunication line. The length of the line between the enterprises I and J is |I � J|(mod 1000). In such a way the two old clusters are joined in a new cluster, served by the center of the old cluster B. Unfortunately after each join the sum of the lengths of the lines linking an enterprise to its serving center could be changed and the end users would like to know what is the new length. Write a program to keep trace of the changes in the organization of the network that is able in each moment to answer the questions of the users.

Input 

Your program has to be ready to solve more than one test case. The first line of the input file will contains only the number T of the test cases. Each test will start with the number N of enterprises (5≤N≤20000). Then some number of lines (no more than 200000) will follow with one of the commands:

E I � asking the length of the path from the enterprise I to its serving center in the moment;
I I J � informing that the serving center I is linked to the enterprise J.

The test case finishes with a line containing the word O. The I commands are less than N.

Output 

The output should contain as many lines as the number of E commands in all test cases with a single number each � the asked sum of length of lines connecting the corresponding enterprise with its serving center.

Sample Input 

1
4
E 3
I 3 1
E 3
I 1 2
E 3
I 2 4
E 3
O

Sample Output 

0
2
3
5

题解:并查集。注意:由于本题的合并操作指定了父节点和子节点,所以不能使用启发式合并。不使用路径压缩能AC。若使用路径压缩,需要在压缩时维护每个节点到父节点的距离d[i],合并时更新。

代码:
 1 #include<stdio.h>
 2 #include<string.h>
 3 #include<math.h>
 4 #include<ctype.h>
 5 #include<stdlib.h>
 6 #include<stdbool.h>
 7 
 8 #define rep(i,a,b)      for(i=(a);i<=(b);i++)
 9 #define clr(x,y)        memset(x,y,sizeof(x))
10 #define sqr(x)          (x*x)
11 
12 int i,j,n,
13     father[20003],d[20003];
14 
15 void pre()
16 {
17     clr(father,0);
18     clr(d,0);
19 }
20 
21 int find(int x)
22 {
23     int r,k,p,sum=0;
24     
25     
26     k=x;
27     while(k!=father[k]) {
28         sum+=abs(k-father[k])%1000;
29         k=father[k];
30     }
31     
32     return sum;
33 }
34 
35 int main()
36 {
37     int i,T,n,x,y,f1;
38     char ch;
39     scanf("%d",&T); 
40     while(T--) {
41         pre();
42         scanf("%d",&n);
43         rep(i,1,n) father[i]=i;
44         
45         while(true) {
46             scanf("%c",&ch);
47             if(ch=='O') break;
48             if(ch=='E') {
49                 scanf("%d",&x);
50                 f1=find(x);
51                 printf("%d
",f1);
52             }
53             if(ch=='I') {
54                 scanf("%d%d",&x,&y);
55                 father[x]=y;
56             }    
57  
58         }
59        
60         
61     }
62    
63     return 0;
64 }


 
原文地址:https://www.cnblogs.com/sxiszero/p/3913452.html