Codeforces Round #405 B.Bear and Friendship Condition


B. Bear and Friendship Condition
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 nm 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 (XYZ), 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.

Input

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.

Output

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).

Examples
input
4 3
1 3
3 4
1 4
output
YES
input
4 4
3 1
2 3
3 4
1 2
output
NO
input
10 4
4 3
5 10
8 9
1 2
output
YES
input
3 2
1 2
2 3
output
NO
Note

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.


题意:给你一个图,判断每个联通块是否是强连通。

思路:并查集,每个联通块必须强连通的条件是每个点的度都大于等于联通块中点的数-1,故这道题就很容易了。我发现写并查集的时候把找头结点写成一个函数然后发现会有问题,虽然不知道哪里出了问题。可能是我写拙了。下面给代码:

#include  
#include  
#include  
#include  
#include  
#include  
#include  
#include  
#include
#include
#include
#define maxn 150005 
#define inf 0x3f3f3f3f  
using namespace std;
typedef long long LL;
const double eps = 1e-8;
int deg[maxn], vis[maxn], size[maxn];
void solve(int x, int y){
	int xx = x;
	while (vis[xx])
		xx = vis[xx];
	int yy = y;
	while (vis[yy])
		yy = vis[yy];
	if (xx == yy)
		return;
	if (size[xx] > size[yy]){
		size[xx] += size[yy];
		vis[yy] = xx;
	}
	else{
		size[yy] += size[xx];
		vis[xx] = yy;
	}
}
int main(){
	int n, m;
	scanf("%d%d", &n, &m);
	for (int i = 1; i <= n; i++)
		size[i] = 1;
	while (m--){
		int u, v;
		scanf("%d%d", &u, &v);
		deg[u]++;
		deg[v]++;
		solve(u, v);
	}
	bool jud = true;
	for (int i = 1; i <= n; i++){
		int leader = i;
		while (vis[leader])
			leader = vis[leader];
		if (deg[i] < size[leader] - 1){
			jud = false;
			break;
		}
	}
	if (jud)
		printf("YES\n");
	else
		printf("NO\n");
}



你可能感兴趣的:(并查集)