题目链接:http://codeforces.com/problemset/problem/771/A点击打开链接
Bear Limak examines a social network. Its main functionality is that two members can become friends (then they can talk with each other and share funny pictures).
There are n members, numbered 1 through n. m pairs of members are friends. Of course, a member can't be a friend with themselves.
Let A-B denote that members A and B are friends. Limak thinks that a network is reasonable if and only if the following condition is satisfied: For every three distinct members (X, Y, Z), if X-Y and Y-Z then also X-Z.
For example: if Alan and Bob are friends, and Bob and Ciri are friends, then Alan and Ciri should be friends as well.
Can you help Limak and check if the network is reasonable? Print "YES" or "NO" accordingly, without the quotes.
The first line of the input contain two integers n and m (3 ≤ n ≤ 150 000, ) — the number of members and the number of pairs of members that are friends.
The i-th of the next m lines contains two distinct integers ai and bi (1 ≤ ai, bi ≤ n, ai ≠ bi). Members ai and bi are friends with each other. No pair of members will appear more than once in the input.
If the given network is reasonable, print "YES" in a single line (without the quotes). Otherwise, print "NO" in a single line (without the quotes).
4 3 1 3 3 4 1 4
YES
4 4 3 1 2 3 3 4 1 2
NO
10 4 4 3 5 10 8 9 1 2
YES
3 2 1 2 2 3
NO
The drawings below show the situation in the first sample (on the left) and in the second sample (on the right). Each edge represents two members that are friends. The answer is "NO" in the second sample because members (2, 3) are friends and members (3, 4) are friends, while members (2, 4) are not.

开一个数组记录每个点链接的个数 依次判断每个点 将所有点的度数根据关系式计算看是否能够形成完全图 与k相等就可以
注意这里不用判断0阶完全图跟1阶完全图
#include <bits/stdc++.h>
using namespace std;
long long int pre[200000];
long long int check[200000];
int findx(int x)
{
int r=x;
while(pre[r]!=r)
{
r=pre[r];
}
int i=x;int j;
while(pre[i]!=r)
{
j=pre[i];
pre[i]=r;
i=j;
}
return r;
}
void join(int x,int y)
{
int p1=findx(x);
int p2=findx(y);
if(p1!=p2)
{
pre[p2]=p1;
}
}
int main()
{
int n,k;
scanf("%d%d",&n,&k);
for(int i=0;i<=n;i++)
pre[i]=i;
for(int ii=0;ii<k;ii++)
{
int m,mm;
scanf("%d%d",&m,&mm);
join(m,mm);
}
for(int i=1;i<=n;i++)
{
check[findx(i)]++;
}
long long int sum=0;
for(int i=1;i<=n;i++)
{
if(check[i]!=0&&check[i]!=1)
sum+=(check[i]*(check[i]-1)/2);
}
if(sum==k)
cout << "YES";
else
cout <<"NO";
}