Description
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
E I � asking the length of the path from the enterprise I to its serving center in the moment;The test case finishes with a line containing the word O. The I commands are less than N.
I I J � informing that the serving center I is linked to the enterprise J.
Output
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
和基础的并查集有一点不一样,使用path数组记录。并且不要忘了模1000啊啊啊。
#include <stdio.h> #include <stdlib.h> #define N 20005 int fa[N],path[N]; void InitSet(int n){ for(int i=1; i<=n; i++) { fa[i] = i ; path[i]=0; } } int Find(int x) { if(fa[x]!=x) { int father=Find(fa[x]); path[x]+=path[fa[x]]; fa[x]=father; return father; } else return x; } bool Merge(int u ,int v) { int fu = Find(u) , fv = Find(v) ; if(fu != fv) { fa[u] = fv ; path[u] =abs(u-v)%1000+path[v]; } return fu != fv ; } int main() { int t; scanf("%d",&t); while(t--) { int n; scanf("%d",&n); InitSet(n); char temp[30]; while(scanf("%s",temp)>0) { if(temp[0]=='O') break; if(temp[0]=='E') { int i; scanf("%d",&i); Find(i); printf("%d\n",path[i]); } if(temp[0]=='I') { int i,j; scanf("%d%d",&i,&j); Merge(i,j); } } } return 0; }