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 ;
}

最新文章

  1. 2017 年值得一瞥的 JavaScript 相关技术趋势
  2. Software Development Engineer - Database Services
  3. ASP.NET MVC3入门教程之ajax交互
  4. 移动web开发框架
  5. linux磁盘与文件系统的管理
  6. 初识 easyui datagrid
  7. 访问本机的WEB API 报400错误
  8. Android中Google地图路径导航,使用mapfragment地图上画出线路(google map api v2)详解
  9. linux创建守护进程
  10. HTTP 错误 500.21 - Internal Server Error处理程序“PageHandlerFactory-Integrated”在其模块列表中有一个错误模块“ManagedPipelineHandler”
  11. C#socket通讯两个最经典错误解决方案
  12. javascript笔记整理(数组对象)
  13. 配置rsync+inotify实时同步
  14. 【原】无脑操作:IDEA + maven + Shiro + SpringBoot + JPA + Thymeleaf实现基础授权权限
  15. UVALive - 5857 Captain Q&#39;s Treasure
  16. One-hot数据处理
  17. js递归遍历key
  18. 〖Linux〗在tmux同时使用bash和zsh
  19. Linux安装ElasticSearch与MongoDB分布式集群环境下数据同步
  20. Prime Path--POJ3126(bfs)

热门文章

  1. 自己动手编写 Dockerfile 构建自定义的Jenkins
  2. My First Marathon【我的第一次马拉松】
  3. 004---os &amp; sys
  4. 最短路径算法 2.Dijkstra算法
  5. C#中利用iTextSharp开发二维码防伪标签(1)
  6. 实用脚本 2 -- Linux下定时执行脚本
  7. java_hdfs之读写文件
  8. svn 用cmd命令行启动服务
  9. npm命令 VS yarn命令
  10. 常见bug解析-移动端