A10814 | Bear and Friendship Condition
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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 $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.
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
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.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted