General Sink solved by 301

Feb. 21, 2014, 5:42 p.m. by Rosalind Team

Topics: Graphs

Problem

Given: A positive integer k20 and k simple directed graphs with at most 103 vertices and 2103 edges each in the edge list format.

Return: For each graph, output a vertex from which all other vertices are reachable (if such a vertex exists) and "-1" otherwise.

Source: Algorithms by Dasgupta, Papadimitriou, Vazirani. McGraw-Hill. 2006.

Sample Dataset

2

3 2
3 2
2 1

3 2
3 2
1 2

Sample Output

3 -1

Please login to solve this problem.