Lonely Island

4

34 votes
Algorithms, Easy, Graphs, Sorting
Problem

There are many islands that are connected by one-way bridges, that is, if a bridge connects islands a and b, then you can only use the bridge to go from a to b but you cannot travel back by using the same. If you are on island a, then you select (uniformly and randomly) one of the islands that are directly reachable from a through the one-way bridge and move to that island. You are stuck on an island if you cannot move any further. It is guaranteed that after leaving any island it is not possible to come back to that island.

Find the island that you are most likely to get stuck on. Two islands are considered equally likely if the absolute difference of the probabilities of ending up on them is <=109.

Input format

  • First line: Three integers n (the number of islands), m (the number of one-way bridges), and r (the index of the island you are initially on)
  • Next m lines: Two integers ui and vi representing a one-way bridge from island ui to vi.

Output format

Print the index of the island that you are most likely to get stuck on. If there are multiple islands,then print them in the increasing order of indices (space separated values in a single line).

Input Constraints

1n2000001m5000001ui,vi,rn

 

Sample Input
5 7 1
1 2
1 3
1 4
1 5
2 4
2 5
3 4
Sample Output
4 
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

There are two islands on which you could get stuck- 4 and 5 with 4 being more probable.

Editor Image

?