Connected components
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
The undirected unweighted graph is given. Find the number of its connected components.
Input
The first line contains the number of vertices in the graph. Then, in lines, an by matrix is given — the adjacency matrix of the graph. In the -th row, at the -th position, there is a if vertices and are connected by an edge, and if there is no edge between them. The main diagonal of the matrix contains zeroes. The matrix is symmetric with respect to the main diagonal.
Output
Print the number of connected components in a graph.
Examples
Input #1
Answer #1
Submissions 7K
Acceptance rate 65%