#P1547G. How Many Paths?
How Many Paths?
No submission language available for this problem.
Description
You are given a directed graph which can contain loops (edges from a vertex to itself). Multi-edges are absent in which means that for all ordered pairs exists at most one edge from to . Vertices are numbered from to .
A path from to is a sequence of edges such that:
- vertex is the start of the first edge in the path;
- vertex is the end of the last edge in the path;
- for all pairs of adjacent edges next edge starts at the vertex that the previous edge ends on.
We will assume that the empty sequence of edges is a path from to .
For each vertex output one of four values:
- , if there are no paths from to ;
- , if there is only one path from to ;
- , if there is more than one path from to and the number of paths is finite;
- , if the number of paths from to is infinite.
Let's look at the example shown in the figure.

Then:
- the answer for vertex is : there is only one path from to (path with length );
- the answer for vertex is : there are no paths from to ;
- the answer for vertex is : there is only one path from to (it is the edge );
- the answer for vertex is : there are more than one paths from to and the number of paths are finite (two paths: and );
- the answer for vertex is : the number of paths from to is infinite (the loop can be used in a path many times);
- the answer for vertex is : the number of paths from to is infinite (the loop can be used in a path many times).
The first contains an integer () — the number of test cases in the input. Then test cases follow. Before each test case, there is an empty line.
The first line of the test case contains two integers and () — numbers of vertices and edges in graph respectively. The next lines contain edges descriptions. Each line contains two integers , () — the start and the end of the -th edge. The vertices of the graph are numbered from to . The given graph can contain loops (it is possible that ), but cannot contain multi-edges (it is not possible that and for ).
The sum of over all test cases does not exceed . Similarly, the sum of over all test cases does not exceed .
Output lines. The -th line should contain an answer for the -th test case: a sequence of integers from to .
Input
The first contains an integer () — the number of test cases in the input. Then test cases follow. Before each test case, there is an empty line.
The first line of the test case contains two integers and () — numbers of vertices and edges in graph respectively. The next lines contain edges descriptions. Each line contains two integers , () — the start and the end of the -th edge. The vertices of the graph are numbered from to . The given graph can contain loops (it is possible that ), but cannot contain multi-edges (it is not possible that and for ).
The sum of over all test cases does not exceed . Similarly, the sum of over all test cases does not exceed .
Output
Output lines. The -th line should contain an answer for the -th test case: a sequence of integers from to .