• POJ 1173 Find them, Catch them


    题意:有两个帮派,每个人只属于一个帮派,m次操作,一种操作告诉你两个人不是一个帮派的,另一种操作问两个人是不是在一个帮派。

    解法:并查集+向量偏移。偏移量表示和根节点是不是同一帮派,是为0,不是为1。

    代码:

    #include<stdio.h>
    #include<iostream>
    #include<algorithm>
    #include<string>
    #include<string.h>
    #include<math.h>
    #include<limits.h>
    #include<time.h>
    #include<stdlib.h>
    #include<map>
    #include<queue>
    #include<set>
    #include<stack>
    #include<vector>
    #define LL long long
    
    using namespace std;
    
    int father[100005], delta[100005];
    void init()
    {
        memset(delta, 0, sizeof delta);
        for(int i = 0; i < 100005; i++)
            father[i] = i;
    }
    int Find(int a)
    {
        if(father[a] != a)
        {
            int tmp = Find(father[a]);
            delta[a] = (delta[a] + delta[father[a]]) % 2;
            father[a] = tmp;
        }
        return father[a];
    }
    int main()
    {
        int T;
        scanf("%d", &T);
        while(T--)
        {
            init();
            int n, m;
            scanf("%d%d", &n, &m);
            while(m--)
            {
                char o[2];
                int x, y;
                scanf("%s%d%d", o, &x, &y);
                int c = Find(x), d = Find(y);
                if(o[0] == 'A')
                {
                    if(c != d) puts("Not sure yet.");
                    else
                    {
                        if(delta[x] == delta[y]) puts("In the same gang.");
                        else puts("In different gangs.");
                    }
                }
                else
                {
                    if(c == d) continue;
                    father[c] = d;
                    delta[c] = (delta[y] - delta[x] + 1) % 2;
                }
            }
        }
        return 0;
    }
    

      

  • 相关阅读:
    anltr 解析MYSQL
    MYSQL 主从复制
    Java happens-before
    傅里叶分析-数据通信的理论基础
    Java jdk常用工具集合
    kafka报错 日志压缩报错直接退出
    linux centos7开启防火墙端口
    mysql_取分组后的前几行值
    数据库隔离级别
    mysql删除重复数据
  • 原文地址:https://www.cnblogs.com/Apro/p/4786915.html
Copyright © 2020-2023  润新知