Corporative Network

来源:互联网 发布:手机淘宝买东西教程 编辑:程序博客网 时间:2024/04/28 03:03

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 other 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 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

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

Sample Output

0235


题解:感觉题意好难啊,我靠尼玛。原来是i->j的距离是abs(i - j) % 1000,i的长度=i->j的长度 + j ->j的中心的长度(题意有说吗??你妹的,反正我是没看出来)。还有i肯定是i所在集合的根,这里很重要啊。就是在找父节点的时候把长度加上去就行了。题意太你妹难了。


#include <iostream>#include <cstdio>#include <cstring>#include <cmath> using namespace std;int pre[20004];int d[20004];int find(int x){if(x == pre[x]){return x;}int fa = pre[x];pre[x] = find(pre[x]);d[x] += d[fa];return pre[x];}int main(){int ncase;cin>>ncase;while(ncase--){int n;scanf("%d",&n);char s[10];int u,v;for(int i = 1;i <= n;i++){pre[i] = i;d[i] = 0;}while(scanf("%s",s) && s[0] != 'O'){if(s[0] == 'E'){scanf("%d",&u);find(u);printf("%d\n",d[u]);}else{scanf("%d%d",&u,&v);d[u] = abs(u - v) % 1000;int x = find(v); d[u] += d[v];pre[u] = x;}}}return 0;}


0 0