标签:并查集
6 8 5 3 5 2 6 4 5 6 0 0 8 1 7 3 6 2 8 9 7 5 7 4 7 8 7 6 0 0 3 8 6 8 6 4 5 3 5 6 5 2 0 0 -1 -1
Yes Yes No#include <stdio.h> #include <string.h> #include <iostream> #include <algorithm> using namespace std; const int N=100010; int temp; int fath[N],t[N]; int find (int x) { int r=x; while(fath[r]!=r) { r=fath[r]; } return r; } void merge(int x,int y) { int fx=find(x); int fy=find(y); if(fx!=fy) { fath[fy]=fx; } else { temp=0; } } int main() { int x,y; while(scanf("%d%d",&x,&y),x!=-1,y!=-1) { if(!x&&!y) { printf("Yes\n"); } for(int i=1;i<N;i++) { fath[i]=i; t[i]=0;//记录该节点是否是独立节点 } temp=1; t[x]=t[y]=1; merge(x,y); while(scanf("%d%d",&x,&y),x!=0,y!=0) { merge(x,y); t[x]=t[y]=1; } int num=0; for(int i=1;i<N;i++) { if(fath[i]==i && t[i]) { num++; } if(num>1) //记录该节点的父亲节点个数 { temp=0; } } printf(temp?"Yes\n":"No\n"); } return 0; }
标签:并查集
原文地址:http://blog.csdn.net/holyang_1013197377/article/details/44871765