Description
一个城市中有
- 告诉你
- 问
Solution
并查集。
- 当且仅当
- 当且仅当
- 其余情况无法确定。
时间复杂度
O(m) 。
Code
//Find them, Catch them
#include <cstdio>
#include <cstring>
inline int read()
{
int x=0; char ch=getchar();
while(ch<'0'||'9'<ch) ch=getchar();
while('0'<=ch&&ch<='9') x=x*10+ch-'0',ch=getchar();
return x;
}
int const N=1e5+10;
int n,m;
int fa[N],e[N];
int find(int u) {return fa[u]==u?u:fa[u]=find(fa[u]);}
int main()
{
int task=read();
while(task--)
{
n=read(),m=read();
for(int i=0;i<=n;i++) fa[i]=i,e[i]=0;
for(int i=1;i<=m;i++)
{
char opt=getchar(); while(opt!='A'&&opt!='D') opt=getchar();
int x=read(),y=read();
if(opt=='D')
{
if(!e[x]) e[x]=y; if(!e[y]) e[y]=x;
fa[find(x)]=find(e[y]); fa[find(y)]=find(e[x]);
}else{
if(find(x)==find(y)) printf("In the same gang.
");
else if(find(x)==find(e[y])) printf("In different gangs.
");
else printf("Not sure yet.
");
}
}
}
return 0;
}
P.S.
原来以前写的并查集都是错的…不是fa[find(x)]=y
而是fa[find(x)]=find(y)
。前者在