304007: CF771A. Bear and Friendship Condition
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Bear and Friendship Condition
题意翻译
题意: 给定一张无向图, 要求如果 A 与 B 之间有边, B 与 C 之间有边, 那么 A 与 C 之间也需要有边. 问这张图是否满足要求. 感谢@星烁晶熠辉 提供的翻译题目描述
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<=150000 $ , ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF771A/8f065d6ccf5ce6e7ee658f598aa517f9541bc089.png)) — 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 $ a_{i} $ and $ b_{i} $ ( $ 1<=a_{i},b_{i}<=n,a_{i}≠b_{i} $ ). Members $ a_{i} $ and $ b_{i} $ 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).
输入输出样例
输入样例 #1
4 3
1 3
3 4
1 4
输出样例 #1
YES
输入样例 #2
4 4
3 1
2 3
3 4
1 2
输出样例 #2
NO
输入样例 #3
10 4
4 3
5 10
8 9
1 2
输出样例 #3
YES
输入样例 #4
3 2
1 2
2 3
输出样例 #4
NO