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有直接或间接通路的星球中power最大的

②该星球的power大于pa

③符合①②的星球中取编号最小的

④如无符合的星球,则输出"-1"

ps: 含多个case,case之间需输出空行

思路:

离线处理+并查集

逆向处理,一次性读入并保存所有指令,用map标记被破坏的边,将未被破坏的边用并查集连接,生成最终的状态

再从后往前处理指令,是destroy就并查集连接该边,是query就判断自身是否为根来决定答案

将答案依次保存进数组中,最后逆向输出

代码: 190ms 2264KB

#include <cstdio>
#include <map>
using namespace std;

#define N 10001
#define NN 50001
#define swap(x,y) x=x^y;y=x^y;x=x^y;

struct Node {
    int a, b;
    bool m;  //两种指令
} edge[N << 1], que[NN];  //边,指令
int fa[N], pw[N], ans[NN];  //父节点,power值,答案
map<int, bool> mp;  //标记被破坏的边

void init(int n) {
    mp.clear();
    for (int i = 0; i < n; i++) {
        fa[i] = i;
    }
}

int findfa(int n) {
    return n == fa[n] ? n : fa[n] = findfa(fa[n]);
}

void unite(int a, int b) {
    a = findfa(a);
    b = findfa(b);
    if (a != b) {
        if (pw[a] > pw[b] || pw[a] == pw[b] && a < b) {  //power大及编号小的为父节点
            fa[b] = a;
        }
        else {
            fa[a] = b;
        }
    }
}

int main() {
    int n, m, q;
    char c[8];
    bool f = 1;
    while (~scanf("%d", &n)) {
        if (!f) {
            printf("\n");
        }
        f = 0;
        init(n);
        for (int i = 0; i < n; i++) {
            scanf("%d", &pw[i]);
        }
        scanf("%d", &m);
        for (int i = 0; i < m; i++) {
            scanf("%d%d" , &edge[i].a , &edge[i].b);
            if (edge[i].a > edge[i].b) {
                swap(edge[i].a , edge[i].b);  //小号在前
            }
        }
        scanf("%d", &q);
        for (int i = 0; i < q; i++) {
            scanf("%s", c);
            if (c[0] == ‘d‘) {
                scanf("%d%d", &que[i].a, &que[i].b);
                if (que[i].a > que[i].b) {
                    swap(que[i].a , que[i].b);  //小号在前
                }
                que[i].m = 1;
                mp[que[i].a * N + que[i].b] = 1;  //被毁标记
            }
            else {
                scanf("%d", &que[i].a);
                que[i].m = 0;
            }
        }
        for (int i = 0; i < m; i++) {
            if (!mp[edge[i].a * N + edge[i].b]) {  //未被毁则合并
                unite(edge[i].a, edge[i].b);
            }
        }
        int ansn = 0;
        for (int i = q - 1; i >= 0; i--) {
            if (que[i].m) {
                unite(que[i].a, que[i].b);  //被毁的连回去
            }
            else {
                int t = findfa(que[i].a);
                if (pw[t] <= pw[que[i].a]) {  //根的power不比自己大
                    ans[ansn++] = -1;
                }
                else {
                    ans[ansn++] = t;
                }
            }
        }
        for (int i = ansn - 1; i >= 0; i--) {
            printf("%d\n", ans[i]);
        }
    }
    return 0;
}
时间: 2024-12-22 05:24:42

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 ,并查集删边

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(离线并查集)

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(并查集+离线逆向操作)

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

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

题意:有N个星球,每个星球有自己的武力值.星球之间有M条无向边,连通的两个点可以相互呼叫支援,前提是对方的武力值要大于自己.当武力值最大的伙伴有多个时,选择编号最小的.有Q次操作,destroy为切断连接两点的边,query为查询某星球能不能向它人呼叫支援. 还是需要离线逆向并查集求解.思路和HDU 4496很相似,但是此处不一定是把所有边都删去,所以需要删边的情况建立出最终的状态.因为N可以到1e4,所以可以用map嵌套map的方式记录过程中被删去的边,最后再根据删除情况建立状态. 在合并时需

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

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

Connections in Galaxy War(逆向并查集)

Connections in Galaxy War http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3563 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

L - Connections in Galaxy War - zoj 3261

题意:有一个帝国在打仗,敌方会搞一些破坏,总共用N个阵地,每个阵地都有一个武力值,当第一地方收到攻击的时候他可以进行求助,当然求助的对象只能是武力值比他高的,如果求助失败就输出 ‘-1’, 求助成功就输出 帮助对象的的下标,如果有多个相同武力值的阵地输出下标最小的那个. 输入的第一行是N,表示又N个阵地(0到n-1),下面一行输入每个阵地的武力值,接着输入一个M,下面有M行,表示两点可以想通,接着有Q次查询,query 是查询这个点能不能有帮助他的,destroy表示摧毁两点之间的联系,值得注意

Connections in Galaxy War ZOJ - 3261 离线操作+逆序并查集 并查集删边

#include<iostream> #include<cstring> #include<stdio.h> #include<map> #include<vector> #define cle(a) memset(a,0,sizeof(a)) using namespace std; const int N=50000+10; int w[20100]; bool cmp(int a,int b){ return a>b; } int n