#P771A. Bear and Friendship Condition
Bear and Friendship Condition
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 members, numbered through . 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 and ( , ) — the number of members and the number of pairs of members that are friends.
The -th of the next lines contains two distinct integers and ( ). Members and 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
样例输入 #1
4 3
1 3
3 4
1 4
样例输出 #1
YES
样例 #2
样例输入 #2
4 4
3 1
2 3
3 4
1 2
样例输出 #2
NO
样例 #3
样例输入 #3
10 4
4 3
5 10
8 9
1 2
样例输出 #3
YES
样例 #4
样例输入 #4
3 2
1 2
2 3
样例输出 #4
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 are friends and members are friends, while members are not.
相关
在以下作业中: