poj1703 Find them, Catch them(并查集的应用)

Find them, Catch them
 
Time Limit: 1000MS   Memory Limit: 10000K
Total Submissions: 32225   Accepted: 9947

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.

题目大意:N 表示共有 N 个帮派;下面有 M 条个询问
有两个帮派,现在告诉你一些互相敌对的点对,然后让你判断某两个点之间的关系,并首先判两个点关系是否确定;
用并查集的思想只要两个点在一个集合里就可以了,直接用并查集然后时候在同一个集合;
AC代码:
 1 #include<iostream>
 2 #include<algorithm>
 3 #include<cstdio>
 4 using namespace std;
 5 // 0 代表木有关系,1表示不同类,2代表同类
 6 const int N = 1e5+10;
 7 int m;
 8 int f[N],c[N];
 9 int init()
10 {
11     for(int i=0; i<=m; i++)
12     {
13         f[i] = i;
14         c[i] = 0;
15     }
16 }
17 int xfind(int x)
18 {
19     if(f[x] == x)
20        return x;
21        int t = f[x];
22        f[x] =xfind(f[x]);
23        c[x] = (c[x]+c[t])%2;
24        return f[x];
25 }
26 int solve(char ch,int x,int y )
27 {
28     int fx = xfind(x);
29     int fy = xfind(y);
30     if(fx != fy)
31     {
32         if(ch == 'A') return 0; //返回值0,表示不确定
33         f[fx] =fy;
34         if((c[x]+c[y])%2 ==0)
35             c[fx] = 1;
36     }
37     else
38     {
39         if(ch == 'A')
40            {
41                if(c[x] != c[y]) return 1;    //返回值1,表示在不同的帮派
42                 if(c[x] == c[y]) return 2;  //返回值2,表示在相同的帮派
43            }
44     }
45     if(ch == 'D') return 3;//这种情况不同在考虑的
46 }
47 int main( )
48 {
49     int T,n,x,y;
50     char s;
51     scanf("%d",&T);
52     while(T--)
53     {
54         scanf("%d %d",&m,&n);
55         init();         //初始化并查集
56         for(int i=0; i<n; i++)
57         {
58             scanf(" %c %d %d",&s,&x,&y);
59             int flag  = solve(s,x,y);
60             if(flag == 0) printf("Not sure yet.
");
61             else if(flag == 1) printf("In different gangs.
");
62             else if(flag == 2) printf("In the same gang.
");
63         }
64     }
65     return 0;
66 }
原文地址:https://www.cnblogs.com/lovychen/p/4044446.html