One day Mr. Sidhu's class is excessively loud. Unfortunately, giving them an activity about tiles didn't really work.
He notices that when he tells a certain student to stop talking, they will immediately resume since another noisy student will distract them, but if he tells the noisy student to stop talking, there will be silence at last.
After many hours of careful observations, Mr. Sidhu has given you a list containing the connections between students and asks you if it is even possible for the class to be completely silent.
Given the size of his class (as seen in New Students), he can only tell students to stop talking individually. Note that connections are in one direction - the noisy students talk to the distracted students, but not the other way around.
Input Specification
The first line consists of , the number of students; each student is assigned a number from to .
The next line contains , the number of connections.
The next lines contain two space-separated integers, representing the noisy student and the distracted student respectively. Given the sheer size, it is not guaranteed that the connections are distinct.
Output Specification
You are to output Y
if it is possible and N
if it is not.
Sample Input 1
4
4
1 2
2 3
2 4
4 3
Sample Output 1
Y
Explanation for Sample Output 1
Mr. Sidhu can tell the students to stop talking in the following order:
Sample Input 2
2
2
1 2
2 1
Sample Output 2
N
Explanation for Sample Output 2
After telling student to quiet down student will immediately distract him, and vice-versa. Since there is a cycle the class will never be quiet!
Comments
Very similar to https://dmoj.ca/problem/ccc06j4.
The test data contains at least one case where the same edge is listed twice.
This comment is hidden due to too much negative feedback. Show it anyway.
It was initially not stated whether the edges are all distinct; the problem statement has been updated to clarify that this is not guaranteed.