Is there a cycle?
Very easy
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
The directed graph is given. Determine, does it contain a cycle.
Input
First line contains number of vertices . Each of the next lines contains numbers, each of them is either or . -th number in the -th line equals to if and only if there exist an edge from -th vertex to -th. It is guaranteed that diagonal of the matrix contains zeros.
Output
Print if there is no cycle in the graph and if cycle exists.
Examples
Input #1
Answer #1
Input #2
Answer #2
Submissions 10K
Acceptance rate 34%