ZOJ 3261 Connections in Galaxy War (逆向+带权并查集)

题意:有N个星球,每个星球有自己的武力值。星球之间有M条无向边,连通的两个点可以相互呼叫支援,前提是对方的武力值要大于自己。当武力值最大的伙伴有多个时,选择编号最小的。有Q次操作,destroy为切断连接两点的边,query为查询某星球能不能向它人呼叫支援。

还是需要离线逆向并查集求解。思路和HDU 4496很相似,但是此处不一定是把所有边都删去,所以需要删边的情况建立出最终的状态。因为N可以到1e4,所以可以用map嵌套map的方式记录过程中被删去的边,最后再根据删除情况建立状态。

在合并时需要维护自己能够申请到的支援的武力最大值,以及其编号。

 1 #include<stdio.h>
 2 #include<cstring>
 3 #include<algorithm>
 4 #include<iostream>
 5 #include<cmath>
 6 #include<map>
 7 using namespace std;
 8 typedef long long LL;
 9 const int maxn = 2e4+5;
10 const int INF= 0x3f3f3f3f;
11 struct Edge{
12     int u,v;
13 }E[maxn];
14 struct Query{
15     int op,a,b;
16     LL ans;
17 }p[maxn*3];
18 LL w[maxn];
19 LL dist[maxn];
20 int fa[maxn];
21 int maxid[maxn];
22 inline int Find(int x) {return fa[x]==x ?x: fa[x]=Find(fa[x]);}
23 //void init(int N){ for(int i=0;i<N;++i) fa[i]=i,dist[i]=w[i],maxid[i]=i;}
24 void Union(int a,int b){
25     a = Find(a),b = Find(b);
26     if(a!=b){
27         fa[a] = b;
28         if(dist[b]<dist[a] || dist[b]==dist[a] && maxid[b]>maxid[a]){
29             dist[b]=dist[a];
30             maxid[b]=  maxid[a];
31         }
32     }
33 }
34
35 map<int,map<int,int> > tag;
36
37 int main()
38 {
39     #ifndef ONLINE_JUDGE
40          freopen("in.txt","r",stdin);
41          freopen("out.txt","w",stdout);
42     #endif
43     int T,N,M,Q,u,v,tmp,K,cas=1;
44     char op[10];
45     int mk = 0;
46     while(scanf("%d",&N)==1){
47         if(mk) printf("\n");
48         mk = 1;
49         for(int i=0;i<N;++i) {
50             scanf("%lld",&w[i]);
51             fa[i]=maxid[i]=i;
52             dist[i]=w[i];
53         }
54         tag.clear();
55         scanf("%d",&M);
56         for(int i=1;i<=M;++i){
57             scanf("%d%d",&u,&v);
58             E[i].u =u , E[i].v=v;
59         }
60         scanf("%d",&Q);
61         for(int i=1;i<=Q;++i){
62             scanf("%s%d",op,&p[i].a);
63             if(op[0]==‘d‘) {
64                 p[i].op=0;
65                 scanf("%d",&p[i].b);
66                 tag[p[i].a][p[i].b]=tag[p[i].b][p[i].a]=1;                  //被删边的标记
67             }
68             else p[i].op = 1;                       //0删边,1查询
69         }
70         //因为并不是把边全删完,建立最终状态
71         for(int i=1;i<=M;++i){
72              if(tag[E[i].u][E[i].v]) continue;      //这条边不在
73              else Union(E[i].u,E[i].v);
74         }
75
76         for(int i=Q;i>=1;--i){
77             if(!p[i].op) Union(p[i].a,p[i].b);
78             else{
79                 u = Find(p[i].a);
80                 if(dist[u]>w[p[i].a]) p[i].ans=maxid[u];
81                 else p[i].ans= -1;
82             }
83         }
84         for(int i=1;i<=Q;++i){
85             if(p[i].op) printf("%lld\n",p[i].ans);
86         }
87     }
88     return 0;
89 }

原文地址:https://www.cnblogs.com/xiuwenli/p/9415716.html

时间: 2024-10-06 12:38:59

ZOJ 3261 Connections in Galaxy War (逆向+带权并查集)的相关文章

ZOJ 3261 Connections in Galaxy War (并查集)

Connections in Galaxy War Time Limit: 3 Seconds      Memory Limit: 32768 KB In order to strengthen the defense ability, many stars in galaxy allied together and built many bidirectional tunnels to exchange messages. However, when the Galaxy War began

zoj 3261 Connections in Galaxy War(并查集+离线逆向操作)

 题目:给出一些点,每个点有权值,然后有一些边,相连.无向的.然后有一些操作 query a.表示从a出发的能到达的所有点权值最大的点的编号(相同取编号最小,而且权值要比自己大) destory a,b 表示删除连接a,b的边 思路并查集,但是要逆向处理,所以先离线读入,从后向前处理,于是对于destroy操作,等价于连接两个点的操作,然后对于每个询问输出即可 #include<cstdio> #include<cstring> #include<cmath> #i

ZOJ 3261 - Connections in Galaxy War ,并查集删边

In order to strengthen the defense ability, many stars in galaxy allied together and built many bidirectional tunnels to exchange messages. However, when the Galaxy War began, some tunnels were destroyed by the monsters from another dimension. Then m

ZOJ 3261 Connections in Galaxy War

http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3261 题意: 一. 给定N个星球(0,...,N-1)及其对应的power(p0,...pn-1) 二. 给定M条星球a与b间(a!=b)的通路 三. 给出Q个指令,"destroy a b"代表此时星球a b间的通路(必定已连接)被破坏了,"query a"要求输出当时应对星球a进行救援的星球的编号 规则为: ①与星球a有直接或间接通路的星

题解报告:zoj 3261 Connections in Galaxy War(离线并查集)

Description In order to strengthen the defense ability, many stars in galaxy allied together and built many bidirectional tunnels to exchange messages. However, when the Galaxy War began, some tunnels were destroyed by the monsters from another dimen

ZOJ - 3261 Connections in Galaxy War(并查集删边)

https://cn.vjudge.net/problem/ZOJ-3261 题意 银河系各大星球之间有不同的能量值, 并且他们之间互相有通道连接起来,可以用来传递信息,这样一旦有星球被怪兽攻击,便可通过通道找到能量值最大的星球来帮忙.但是有一些通道被怪兽破坏了. 现在先给出原来的所有通道, 然后进行询问,询问有两种方式: destroy a b: 连接a,b的通道被怪兽破坏了 query a: 询问a能否通过通道找到救兵,只能找能量值比自己大的救兵. 分析 逆向思维,先离线存储所有的输入操作,

Lightoj1009 Back to Underworld(带权并查集)

转载请注明出处: http://www.cnblogs.com/fraud/          ——by fraud Back to Underworld Time Limit:4000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu Description The Vampires and Lykans are fighting each other to death. The war has become so fierc

洛谷OJ P1196 银河英雄传说(带权并查集)

题目描述 公元五八○一年,地球居民迁移至金牛座α第二行星,在那里发表银河联邦 创立宣言,同年改元为宇宙历元年,并开始向银河系深处拓展. 宇宙历七九九年,银河系的两大军事集团在巴米利恩星域爆发战争.泰山压 顶集团派宇宙舰队司令莱因哈特率领十万余艘战舰出征,气吞山河集团点名将杨 威利组织麾下三万艘战舰迎敌. 杨威利擅长排兵布阵,巧妙运用各种战术屡次以少胜多,难免恣生骄气.在 这次决战中,他将巴米利恩星域战场划分成30000列,每列依次编号为1, 2, …, 30000.之后,他把自己的战舰也依次编号

hdu3038(带权并查集)

题目链接: http://acm.split.hdu.edu.cn/showproblem.php?pid=3038 题意: n表示有一个长度为n的数组, 接下来有m行形如x, y, d的输入, 表示从第x,个元素到第y个元素的和为d(包括x, 和y), 问m行输入里面有几个是错误的(第一个输入是正确的); 思路: 很显然带权并查集咯,我们可以用距离的概念代替和的概念比较好理解一点,d表示x到y的和即x到y的距离; 可以用rank[x]表示x到其父亲节点的距离,  将正确的距离关系合并到并查集中