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

    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.

    Source

     
    并查集,用一个opp数组记录相反的对手,然后进行并查集的合并
    刚开始 init()函数忘记加上去了,自己老是这么粗心。。。 还有在判断A的时候,先考虑相同的和不同的,最后就剩下不确定的了。
     
     1 #include<iostream>
     2 #include<cstdio>
     3 #include<cstring>
     4 using namespace std;
     5 #define N 100006
     6 int n,m;
     7 int opp[N],fa[N];
     8 void init(){
     9     for(int i=0;i<N;i++){
    10         opp[i]=0;
    11         fa[i]=i;
    12     }
    13 }
    14 int find(int x){
    15     return fa[x]==x?x:fa[x]=find(fa[x]);
    16 }
    17 void merge(int x,int y){
    18     int root1=find(x);
    19     int root2=find(y);
    20     if(root1==root2) return;
    21     fa[root1]=root2;
    22 }
    23 int main()
    24 {
    25     int t;
    26     scanf("%d",&t);
    27     while(t--){
    28         init();
    29         scanf("%d%d",&n,&m);
    30         char s[3];
    31         int x,y;
    32         for(int i=0;i<m;i++){
    33             scanf("%s",s);
    34             if(s[0]=='A'){
    35                 scanf("%d%d",&x,&y);
    36                 if(find(x)==find(y)){
    37                     printf("In the same gang.
    ");
    38                 }else if(find(x)==find(opp[y])){
    39                     printf("In different gangs.
    ");
    40                 }else{
    41                     printf("Not sure yet.
    ");
    42                 }
    43             }
    44             else{
    45                 scanf("%d%d",&x,&y);
    46                 if(opp[x]==0 && opp[y]==0){
    47                     opp[x]=y;
    48                     opp[y]=x;
    49                 }
    50                 else if(opp[x]==0){
    51                     opp[x]=y;
    52                     merge(x,opp[y]);
    53                 }
    54                 else if(opp[y]==0){
    55                     opp[y]=x;
    56                     merge(y,opp[x]);
    57                 }
    58                 else{
    59                     merge(x,opp[y]);
    60                     merge(y,opp[x]);
    61                 }
    62             }
    63         }
    64     }
    65     return 0;
    66 }
    View Code
  • 相关阅读:
    Java 内部类理解
    Java 抽象类和接口的理解
    Java String 和 new String()的区别
    Java 基本类型和对象类型的区别
    Java对象与对象引用变量的理解
    bash: crontab: command not found
    Linux下压缩某个文件夹命令
    爬虫实战项目二、字体反爬
    Pandas学习之四:修改增加
    Pandas库学习之三:处理元素
  • 原文地址:https://www.cnblogs.com/UniqueColor/p/4770742.html
Copyright © 2011-2022 走看看