question archive Ginormous Campus The UTM campus is pretty big
Subject:Computer SciencePrice: Bought3
Ginormous Campus
The UTM campus is pretty big. There are n buildings scattered around it, numbered from 0 to n-1. These buildings are so far away from each other that the only way to get from one to another is to take a campus bus.
There are m campus bus routes. The i-th one (0 <= i < m) takes you from building u_i to building v_i (but not the other way around). These buses run very frequently.
Professor Zingaro is deciding where to hold his CSC108 lectures. He believes a building x is accessible from a building y if you can get from y to x taking at most two buses. For his students' convenience, he wants to hold his lectures in the most accessible building. Help him out by telling him how many buildings the most accessible building is accessible from. In addition, list all buildings that are the most accessible.
Filename
Your filename for this question must be q2.py.
Input
The first line of the input contains two space-separated integers n and m, denoting the number of buildings and bus routes, respectively.
m lines follow. The i-th one contains two space-separated integers u_i and v_i, as described above.
Output
The output should consist of two lines. The first line should contain a single integer x denoting the number of buildings that the most accessible building is accessible from
The second line should contain a list of up to n integers, denoting the list of buildings that are accessible from exactly x buildings. List the buildings in increasing order.
Constraints
Time Limit
Your program must finish running on any valid input within 9 seconds.
Sample Input 1
6 5
0 1
1 2
2 3
3 4
4 5
Sample Output 1
3
2 3 4 5
Sample 1 Explanation
Sample Input 2
6 8
0 1
2 1
1 3
4 3
3 5
0 1
3 0
1 0
Sample Output 2
5
0 3