简单种类并查集的万能做法:
例题:POJ 1703(看不懂这题代码的请忽略代码向下看,这只是个小菜)
ac代码:
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <string>
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
int f[2*100005];//两种关系开两倍数组
int tofind(int x)
{
if (f[x]==x)
return x;
f[x]=tofind(f[x]);
return f[x];
}
void tojoin(int x,int y)
{
int r1=tofind(x);
int r2=tofind(y);
if (r1!=r2)
f[r1]=r2;
}
int main()
{
int t,m,n,a,b;
char c;
cin>>t;
while(t--)
{
cin>>n>>m;
for (int i=0;i<=2*n;i++)
f[i]=i;
while(m--)
{
getchar();
scanf("%c%d%d",&c,&a,&b);
if (c=='D')
{
tojoin(a,b+n);
tojoin(a+n,b);
}
if(c=='A')
{
if (tofind(a)==tofind(b))
printf("In the same gang.\n");
else if (tofind(a)==tofind(b+n)||tofind(a+n)==tofind(b))
printf("In different gangs.\n");
else
printf("Not sure yet.\n");
}
}
}
return 0;
}
例题:POJ 1182典型种类并查集例题,这个懂的话,上个就是小菜
超详细题解,我自己就不写了,直接上代码:
#include <algorithm>
#include <iostream>
using namespace std;
int f[3*50005];
int tofind(int x)
{
if (f[x]!=x)
return tofind(f[x]);
}
void tojoin(int x,int y)
{
int r1=tofind(x);
int r2=tofind(y);
f[r1]=r2;
}
int main()
{
int n,m,a,b,c,sum=0;
cin>>n>>m;
for(int i=1;i<=3*n;i++)
f[i]=i;
while(m--)
{
cin>>a>>b>>c;
if (b>n||c>n)
{
sum++;continue;
}
if (a==1)
{
if (tofind(b+n)==tofind(c)||tofind(b+n+n)==tofind(c))
//特别注意判断关系,只能用等号判断,而不能用!=
{
sum++;continue;
}
tojoin(b,c);
tojoin(b+n,c+n);
tojoin(b+n+n,c+n+n);
}
else
{
if (tofind(b)==tofind(c)||tofind(b+n+n)==tofind(c))//还有这里的判断
{
sum++;continue;
}
tojoin(b,c+2*n);//想清楚为何要这样,狠狠狠狠狠很重要
tojoin(b+n,c);
tojoin(b+n+n,c+n);
}
}
cout<<sum<<endl;
}
暂时先写这些,并查集漫漫长路 ,就和找女朋友一样。。。。。。