Connections in Galaxy War

Time Limit: 3 Seconds      Memory Limit: 32768 KB

题目链接http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3261

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 dimension. Then many problems were raised when some of the stars wanted to seek help from the others.

In the galaxy, the stars are numbered from 0 to N-1 and their power was marked by a non-negative integer pi. When the star A wanted to seek help, it would send the message to the star with the largest power which was connected with star A directly or indirectly. In addition, this star should be more powerful than the star A. If there were more than one star which had the same largest power, then the one with the smallest serial number was chosen. And therefore, sometimes star A couldn't find such star for help.

Given the information of the war and the queries about some particular stars, for each query, please find out whether this star could seek another star for help and which star should be chosen.

Input:

There are no more than 20 cases. Process to the end of file.

For each cases, the first line contains an integer N (1 <= N <= 10000), which is the number of stars. The second line contains N integers p0, p1, ... , pn-1 (0 <= pi <= 1000000000), representing the power of the i-th star. Then the third line is a single integer M (0 <= M <= 20000), that is the number of tunnels built before the war. Then M lines follows. Each line has two integers a, b (0 <= a, b <= N - 1, a != b), which means star a and star b has a connection tunnel. It's guaranteed that each connection will only be described once.

In the (M + 2)-th line is an integer Q (0 <= Q <= 50000) which is the number of the information and queries. In the following Q lines, each line will be written in one of next two formats.

"destroy a b" - the connection between star a and star b was destroyed by the monsters. It's guaranteed that the connection between star a and star b was available before the monsters' attack.

"query a" - star a wanted to know which star it should turn to for help

There is a blank line between consecutive cases.

Output

For each query in the input, if there is no star that star a can turn to for help, then output "-1"; otherwise, output the serial number of the chosen star.

Print a blank line between consecutive cases.

Sample Input

2

10 20

1

0 1

5

query 0

query 1

destroy 0 1

query 0

query 1

Sample Output

1

-1

-1

-1

题意:

先进行合并操作,然后进行询问和分裂操作,询问操作返回相连值最大的那个点的下标,如果值最大的点有多个,则要下标最小;分裂操作就从a,b中间断开。

题解:

因为并查集只能“并”,不能“裂”,所以直接处理不好处理。

但是如果我们反过来看,每次分裂操作都是一次合并操作,刚好可以用并查集处理。

之后,我们维护下集合中最大的值以及最小坐标就行了。

代码如下:

#include <cstdio>
#include <cstring>
#include <algorithm>
#include <iostream>
#include <map>
using namespace std; typedef long long ll;
const int N = ,Q = ;
int n,m,que;
char s[Q][];
ll P[N];
struct father{
int fa,id;
ll p;
}f[N];
struct query{
int x,y;
}q[Q];
struct link{
int p1,p2;
}l[N<<];
//用很多数组来储存...
int find(int x){
return f[x].fa==x ? x : f[x].fa=find(f[x].fa);
}
void Union(int x,int y){
int fx=find(x),fy=find(y);
f[fx].fa=fy;
if(f[fx].p>f[fy].p){
f[fy].p=f[fx].p;
f[fy].id=f[fx].id;
}else if(f[fx].p==f[fy].p){
f[fy].id=min(f[fy].id,f[fx].id);
}
}
int main(){
bool flag = false;
while(~scanf("%d",&n)){
map <int ,map<int,int> > mp;
for(int i=;i<=n;i++) f[i].fa=i,f[i].id=i;
for(int i=;i<n;i++) scanf("%lld",&f[i].p),P[i]=f[i].p;
scanf("%d",&m);
for(int i=,tmp1,tmp2;i<=m;i++){
scanf("%d%d",&tmp1,&tmp2);
if(tmp1>tmp2) swap(tmp1,tmp2);
l[i].p1=tmp1;l[i].p2=tmp2;
}
scanf("%d",&que);
for(int i=,tmp1,tmp2;i<=que;i++){
scanf("%s",s[i]);
if(s[i][]=='d'){
scanf("%d%d",&tmp1,&tmp2);
if(tmp1>tmp2) swap(tmp1,tmp2);
q[i].x=tmp1;q[i].y=tmp2;
mp[tmp1][tmp2]=;
}else scanf("%d",&q[i].x);
}
for(int i=;i<=m;i++){
int p1=l[i].p1,p2=l[i].p2;
if(mp[p1][p2]) continue;
int fx=find(p1),fy=find(p2);
if(fx==fy) continue;
Union(p1,p2);
}
int ans[Q];int tot=;
for(int i=que;i>=;i--){
if(s[i][]=='d') Union(q[i].x,q[i].y);
else{
int now = q[i].x;
int fx=find(now);
if(f[fx].p<=P[now] ) ans[++tot]=-;
else ans[++tot]=f[fx].id;
}
}
if(flag) printf("\n");
else flag=true ;
for(int i=tot;i>=;i--) printf("%d\n",ans[i]);
}
return ;
}

ZOJ3261:Connections in Galaxy War(逆向并查集)的更多相关文章

  1. Connections in Galaxy War (逆向并查集)题解

    Connections in Galaxy War In order to strengthen the defense ability, many stars in galaxy allied to ...

  2. Connections in Galaxy War(逆向并查集)

    Connections in Galaxy War http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3563 Time Limit ...

  3. ZOJ 3261 Connections in Galaxy War(逆向并查集)

    参考链接: http://www.cppblog.com/yuan1028/archive/2011/02/13/139990.html http://blog.csdn.net/roney_win/ ...

  4. ZOJ3261 Connections in Galaxy War —— 反向并查集

    题目链接:https://vjudge.net/problem/ZOJ-3261 In order to strengthen the defense ability, many stars in g ...

  5. zoj 3261 Connections in Galaxy War(并查集逆向加边)

    题目链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=3261 题意:有很多颗星球,各自有武力值,星球间有一些联系通道,现 ...

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

    In order to strengthen the defense ability, many stars in galaxy allied together and built many bidi ...

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

    https://cn.vjudge.net/problem/ZOJ-3261 题意 银河系各大星球之间有不同的能量值, 并且他们之间互相有通道连接起来,可以用来传递信息,这样一旦有星球被怪兽攻击,便可 ...

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

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

  9. ZOJ-3261 Connections in Galaxy War 并查集 离线操作

    题目链接:https://cn.vjudge.net/problem/ZOJ-3261 题意 有n个星星,之间有m条边 现一边询问与x星连通的最大星的编号,一边拆开一些边 思路 一开始是真不会,甚至想 ...

随机推荐

  1. python 面向对象 (多态)

    什么是多态?多态就像是人有多种心情,场景不一样心情就会不一样. class Dog: def print_self(self): print('this is dog') class Hsq(Dog) ...

  2. Go语言中的HTTP

    Go中的http使用 package main import ( "fmt" "net/http" "io/ioutil" "st ...

  3. Kuernetes-设计架构(二)

    Kubernetes设计架构 Kubernetes集群包含有节点代理kubelet和Master组件(APIs,scheduler.etc),一切都基于分布式的存储系统.Kubernetes架构图: ...

  4. 【POJ】1008 Maya Calendar

    参考:https://blog.csdn.net/u011392408/article/details/28866779 https://blog.csdn.net/qq_36424540/artic ...

  5. 简单整理React的Context API

    之前做项目时经常会遇到某个组件需要传递方法或者数据到其内部的某个子组件,中间跨越了甚至三四层组件,必须层层传递,一不小心哪层组件忘记传递下去了就不行.然而我们的项目其实并没有那么复杂,所以也没有使用r ...

  6. java 第六章 面向对象基础

    1.面向对象编程思想 面向过程编程 传统的C语言属于面向过程编程.面向过程解决问题的思路:通常是分析出解决问题所需要的步骤,然后用方法把这些步骤一步一步实现,最后一个一个依次调用方法来解决. 面向过程 ...

  7. Coap协议学习笔记-第一篇

    1. 物联网应用上一般使用单片机(或者其他SOC),单片机的RAM内存一般只有20KB~~128KB左右,然而一个TCP协议栈可能就20KB,所以只能用UDP,因为UDP相对小很多,然后在UDP上加了 ...

  8. 如何删除TFS项目

    TFS是先建集合,再在集合下面建项目.删除的时候,需要先删除项目,再删除集合,然后重新建.具体步骤如下: 1.删除项目        删除项目必须通过命令来进行删除,调用TFSDeleteProjec ...

  9. 从浏览器或者Webview 中唤醒APP

    本文来自网易云社区 作者:刘新奇 移动互联时代,很多互联网服务都会同时具备网站以及移动客户端,很多人认为APP的能帮助建立更稳固的用户关系,于是经常会接到各种从浏览器.webview中唤醒APP的需求 ...

  10. 「日常训练」「小专题·USACO」 Barn Repair(1-4)

    题意 之后补. 分析 这题同样也很精巧.我们不妨思考一下,如果只允许用一块木板,那么要购买多少距离?是整个的距离吗?不是,是从第一个到最后一个(哈哈哈哈哈哈哈).但是,不包括第一个的"左边& ...