记录编号 |
400758 |
评测结果 |
AAAAAAAAAAAA |
题目名称 |
亲戚 |
最终得分 |
100 |
用户昵称 |
据说这是zzy |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.074 s |
提交时间 |
2017-04-30 20:55:23 |
内存使用 |
0.39 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cmath>
using namespace std;
int father[20001];//找头
int find(int w)
{
if(father[w]!=w)
return find(father[w]);
else return w;
}
void hebing(int x,int y)
{
father[y]=x;
}
int main()
{ int n,m,x,y;
freopen("relations.in","r",stdin);
freopen("relations.out","w",stdout);
cin>>n>>m;
for(int i=1;i<=n;i++)
father[i]=i;
for(int i=1;i<=m;i++)
{
cin>>x>>y;
int r1=find(x);
int r2=find(y);
if(r1!=r2)
hebing(r1,r2);
}
int q;
cin>>q;
for(int i=1;i<=q;i++)
{
cin>>x>>y;
if(find(x)!=find(y))
cout<<"No";
else cout<<"Yes";
}
return 0;
}