題目大意:
查詢某1個(gè)節(jié)點(diǎn)到根節(jié)點(diǎn)之間的距離
解題思路:
加權(quán)并查集問題。之前做的題目是“查看兩個(gè)或多個(gè)節(jié)點(diǎn)是不是在同1個(gè)集合下”,現(xiàn)在的題目是“查詢某個(gè)節(jié)點(diǎn)到
根節(jié)點(diǎn)之間的距離”。之前只需要使用到father[x]這個(gè)數(shù)組,用來表示x的父親節(jié)點(diǎn)是誰。現(xiàn)在引入dist[x]數(shù)組,用來記錄
x節(jié)點(diǎn)到根節(jié)點(diǎn)的距離
1)在并查集中,根節(jié)點(diǎn)不懂,其他節(jié)點(diǎn)都可以動。
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.
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.
1 4 E 3 I 3 1 E 3 I 1 2 E 3 I 2 4 E 3 O
0 2 3 5
代碼以下: