hdu1962Corporative Network带权回路

 1 /*
 2     有N个企业,每个企业想要实现通信,要用线路来连接,线路的长度为abs(a-b)%1000;
 3     如果企业a 链接到了企业b 那么b就是the center of the serving!
 4     然后有两种操作:
 5     E a : 输出企业a到serving center 的线路的距离
 6     I a, b  将企业a连接到企业 b,那么b就成为了serving center(之前连接a的企业,他们的serving center也变成了b)
 7
 8    思路:并查集! (压缩路径时回溯求解) !
 9 */
10 #include<iostream>
11 #include<cstring>
12 #include<cmath>
13 #include<cstdio>
14 #define M 20005
15 using namespace std;
16 int n;
17 int f[M];
18 int ans[M];//节点 i到 serving center的距离!
19
20 int getFather(int x){
21     if(x==f[x]) return x;
22     int ff=getFather(f[x]);
23     ans[x]+=ans[f[x]];//节点x到serving center 的距离要加上其父节点到serving center的距离!
24     return f[x]=ff;
25 }
26
27 void Union(int a, int b){
28     if(a==b) return;
29     f[a]=b;
30     ans[a]=abs(a-b) % 1000;
31 }
32
33 int main(){
34    int t;
35    char ch[3];
36    cin>>t;
37    while(t--){
38       cin>>n;
39       int a, b;
40       memset(ans, 0, sizeof(ans));
41       for(int i=1; i<=n; ++i)
42          f[i]=i;
43       while(cin>>ch && ch[0]!=‘O‘){
44           if(ch[0]==‘E‘){
45              cin>>a;
46              getFather(a);
47              cout<<ans[a]<<endl;
48           }
49           else{
50              cin>>a>>b;
51              Union(a, b);
52           }
53       }
54    }
55    return 0;
56 }

hdu1962Corporative Network带权回路

时间: 2024-10-29 05:08:59

hdu1962Corporative Network带权回路的相关文章

UVALive 3027 Corporative Network 带权并查集

                     Corporative Network A very big corporation is developing its corporative network. In the beginning each of the N enterprisesof the corporation, numerated from 1 to N, organized its own computing and telecommunication center.Soon,

POJ1962Corporative Network[带权并查集]

Corporative Network Time Limit: 3000MS   Memory Limit: 30000K Total Submissions: 3945   Accepted: 1416 Description A very big corporation is developing its corporative network. In the beginning each of the N enterprises of the corporation, numerated

UVA 3027 Corporative Network 带权并查集、

题意:一个企业要去收购一些公司把,使的每个企业之间互联,刚开始每个公司互相独立 给出n个公司,两种操作 E I:询问I到I它连接点最后一个公司的距离 I I J:将I公司指向J公司,也就是J公司是I公司的上级,距离为abs(I-J)%1000(貌似G++不支持abs,PE了两发) 思路:转化一下题意就行了,首先刚开始的时候每个公司都是独立的,I操作就是并查集中合并操作,将I这课树并到J这个树上, E操作要求的东西就是 I到I的根节点的距离,先看一个没有路径压缩直接暴力的方法把.(本以为不会过的,

Corporative Network(带权并查集)

这个题的题意是  当输入'E'是查找操作,查找从后面这个数到他的父亲这边的值,'I'代表把后面的数作为前面数的父亲 然后他们两个的差值代表这两个边的权值 水水的题 #include <stdio.h> #include <string.h> int par[20005]; int rank1[20005]; int abs(int hh) { return (hh>0)?hh:-hh; } void init() { for(int i=0;i<20005;i++) {

UVALive - 3027Corporative Network(带权并查集)

题目: UVALive - 3027Corporative Network(带权并查集) 题目大意:有n和节点,初始时每个节点的父节点都不存在,然后有下面两种操作:I 操作 I a,b 将a的父节点变成b.E操作 E a,查询a到它的父节点的距离. 解题思路:带权并查集.注意这里距离的变化是a -> b,那么a到根节点的距离就是a到b的距离的绝对值 % 1000 + b到它的根节点的距离. 代码: #include <cstdio> #include <cstring> #i

poj 1962 Corporative Network(带权并查集)

题意: 在n个站点间建电线:两种操作: I a b表示以a为中心站点建线: E a表示查询以a站点为中心,相连的电线总长度: 思路: 带权并查集:中心站点就是父亲,电线长度为权值: #include<cstdio> #include<cstring> #include<cmath> #include<algorithm> using namespace std; int fa[500010],w[500010]; int t,n,m; char ch[5];

HDU_3172_带权并查集

Virtual Friends Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 8229    Accepted Submission(s): 2363 Problem Description These days, you can do all sorts of things online. For example, you can u

并查集——poj2236(带权并查集)

题目:Wireless Network 题意:给定n台已损坏计算机的位置和计算机最远通信距离d,然后分别根据命令执行以下两种操作: "O p" (1 <= p <= N) :表示修理计算机p: "S p q" (1 <= p, q <= N) :表示检测计算机p和计算机q能否通信. 输出:能通信则输出"SUCCESS",否则输出"FAIL" 题解: 带权并查集还是那个重要的知识点--关系. 此题,我们使

无向带权图的最小生成树算法——Prim及Kruskal算法思路

边赋以权值的图称为网或带权图,带权图的生成树也是带权的,生成树T各边的权值总和称为该树的权. 最小生成树(MST):权值最小的生成树. 生成树和最小生成树的应用:要连通n个城市需要n-1条边线路.可以把边上的权值解释为线路的造价.则最小生成树表示使其造价最小的生成树. 构造网的最小生成树必须解决下面两个问题: 1.尽可能选取权值小的边,但不能构成回路: 2.选取n-1条恰当的边以连通n个顶点: MST性质:假设G=(V,E)是一个连通网,U是顶点V的一个非空子集.若(u,v)是一条具有最小权值的