CF771A.Bear and Friendship Condition
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
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 , ) — 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).
输入输出样例
输入#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
说明/提示
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.