zoukankan      html  css  js  c++  java
  • Find them, Catch them(POJ 1703 关系并查集)

    Find them, Catch them
    Time Limit: 1000MS   Memory Limit: 10000K
    Total Submissions: 38668   Accepted: 11905

    Description

    The police office in Tadu City decides to say ends to the chaos, as launch actions to root up the TWO gangs in the city, Gang Dragon and Gang Snake. However, the police first needs to identify which gang a criminal belongs to. The present question is, given two criminals; do they belong to a same clan? You must give your judgment based on incomplete information. (Since the gangsters are always acting secretly.) 

    Assume N (N <= 10^5) criminals are currently in Tadu City, numbered from 1 to N. And of course, at least one of them belongs to Gang Dragon, and the same for Gang Snake. You will be given M (M <= 10^5) messages in sequence, which are in the following two kinds: 

    1. D [a] [b] 
    where [a] and [b] are the numbers of two criminals, and they belong to different gangs. 

    2. A [a] [b] 
    where [a] and [b] are the numbers of two criminals. This requires you to decide whether a and b belong to a same gang. 

    Input

    The first line of the input contains a single integer T (1 <= T <= 20), the number of test cases. Then T cases follow. Each test case begins with a line with two integers N and M, followed by M lines each containing one message as described above.

    Output

    For each message "A [a] [b]" in each case, your program should give the judgment based on the information got before. The answers might be one of "In the same gang.", "In different gangs." and "Not sure yet."

    Sample Input

    1
    5 5
    A 1 2
    D 1 2
    A 1 2
    D 2 4
    A 1 4
    

    Sample Output

    Not sure yet.
    In different gangs.
    In the same gang.

    看食物链那一题看了半天,对并查集的理解还是不够啊!这个取余的方法有点6
     1 #include <stdio.h>
     2 #include <string.h>
     3 const int maxn = 100005;
     4 
     5 int n,m;
     6 int p[maxn];//保存父节点
     7 int r[maxn];//保存与父节点的关系,0为同类。1为不同类
     8 
     9 void make_set()
    10 {
    11     for(int i = 1; i <= n; i++)
    12     {
    13         p[i] = i;
    14         r[i] = 0;
    15     }
    16 }
    17 
    18 int find(int x)
    19 {
    20     if(x == p[x])
    21         return x;
    22     int tmp = p[x];            //记录父亲节点,方便更新r[].
    23     p[x] = find(p[x]);
    24     r[x] = (r[x]+r[tmp])%2;        //根据子节点与父亲节点的关系和父节点与爷爷节点的关系,推导子节点与爷爷节点的关系  
    25     return p[x];
    26 }
    27 
    28 void merge(int a, int b)
    29 {
    30     int fa = find(a);
    31     int fb = find(b);
    32     p[fa] = fb;
    33     r[fa] = (r[a]+r[b]+1)%2;        //fx与x关系 + x与y的关系 + y与fy的关系 = fx与fy的关系 
    34 }
    35 
    36 int main()
    37 {
    38     int test,a,b;
    39     char str[2];
    40     freopen("in.txt","r",stdin);
    41     scanf("%d",&test);
    42     while(test--)
    43     {
    44         scanf("%d %d",&n,&m);
    45         make_set();
    46         while(m--)
    47         {
    48             scanf("%s %d %d",str,&a,&b);
    49 
    50             if(str[0] == 'A')
    51             {
    52                 if(find(a) != find(b))        //如果根节点不同,则不能判断关系  
    53                 {
    54                     printf("Not sure yet.
    ");
    55                     continue;
    56                 }
    57                 else
    58                 {
    59                     if(r[a] == r[b])
    60                         printf("In the same gang.
    ");
    61                     else printf("In different gangs.
    ");
    62                 }
    63             }
    64             else
    65             {
    66                 merge(a,b);
    67             }
    68         }
    69     }
    70     return 0;
    71 }
  • 相关阅读:
    使用Eclipse创建Maven的JSP项目
    MySQL远程访问
    IDEA创建web工程,不用Archetype(超简单)
    IDEA创建web工程(超简单)
    共享软件
    C语言讲义——链表完整代码
    base64图片显示问题
    JAVA 判断一个字符串是否是合法的日期格式?
    SpringBoot配置本地文件映射路径
    SpringBoot读取资源目录下的文件
  • 原文地址:https://www.cnblogs.com/a1225234/p/5180435.html
Copyright © 2011-2022 走看看