比赛 |
图论练习和一些常规题 |
评测结果 |
AAAAAAAAAAAA |
题目名称 |
亲戚 |
最终得分 |
100 |
用户昵称 |
Xiaokang_Zhao120 |
运行时间 |
0.058 s |
代码语言 |
C++ |
内存使用 |
0.97 MiB |
提交时间 |
2018-05-23 20:17:07 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
const int maxx=20003;
int father[maxx];
int n,m,q,ai,bi,ci,di;
int findd(int x)
{
if(father[x]!=x)
father[x]=findd(father[x]);
return father[x];
}
void unionn(int x,int y)
{
x=findd(x),y=findd(y);
father[y]=x;
}
bool judgee(int x,int y)
{
x=findd(x),y=findd(y);
if(x==y)
return true;
else
return false;
}
int main()
{
freopen("relations.in","r",stdin);freopen("relations.out","w",stdout);
scanf("%d%d",&n,&m);
for(int i=1;i<=n;i++)
father[i]=i;
for(int i=1;i<=m;i++)
{
scanf("%d%d",&ai,&bi);
unionn(ai,bi);
}
scanf("%d",&q);
for(int i=1;i<=q;i++)
{
scanf("%d%d",&ci,&di);
if(judgee(ci,di))
printf("Yes\n");
else
printf("No\n");
}
return 0;
}