Given an undirected graph (as an adjacency matrix, of course) output all its connected components.
You may output the components in any order, but for each component output the vertices in increasing order.
Input Specification
, the number of vertices.
An adjacency matrix, rows with numbers (0
or 1
).
The matrix will be symmetrical (it is undirected!).
Output Specification
The components, one per line.
Each line should be in sorted order.
Sample Input
5
0 0 0 0 0
0 0 0 0 0
0 0 0 1 1
0 0 1 0 1
0 0 1 1 0
Sample Output
1
2
3 4 5
Comments
It appears that the components themselves have to be outputted in the order of their smallest elements, as opposed to in any order (like the problem statement says). (i.e. if the components were
1 5 6 7
,8 9
,3
,2 4
the output would be)