8608: GRL_4_B : Topological Sort
[Creator : ]
Description
A directed acyclic graph (DAG) can be used to represent the ordering of tasks. Tasks are represented by vertices and constraints where one task can begin before another, are represented by edges. For example, in the above example, you can undertake task B after both task A and task B are finished. You can obtain the proper sequence of all the tasks by a topological sort.
Given a DAG $G$, print the order of vertices after the topological sort.
Input
In the first line, two integers |V| is the number of vertices and |E| is the number of edges in the graph. The graph vertices are named with the numbers 0, 1,..., |V|-1 respectively.
In the following |E| lines, three integers $s_i$ and $t_i$ represent source and target verticess of $i$-th edge (directed).
In the following |E| lines, three integers $s_i$ and $t_i$ represent source and target verticess of $i$-th edge (directed).
Output
Print the vertices numbers in order. Print a number in a line.
If there are multiple possible solutions, print any one of them (the solution is judged by a special validator).
If there are multiple possible solutions, print any one of them (the solution is judged by a special validator).
Constraints
1≤|V|≤10,000
0≤|E|≤100,000
There are no parallel edges in G
There are no self loops in G
0≤|E|≤100,000
There are no parallel edges in G
There are no self loops in G
Sample 1 Input
6 6
0 1
1 2
3 1
3 4
4 5
5 2
Sample 1 Output
0
3
1
4
5
2