Processing math: 100%
Articulation point and bridge - MarisaOJ: Marisa Online Judge

Articulation point and bridge

Time limit: 1000 ms
Memory limit: 256 MB
Given a undirected graph with n vertices and m edges, count the number of articulation points and bridges in the graph. ### Input - The first line contains 2 integers n,m. - The next m lines, each line contains two integers u,v, there is an edge between u and v. ### Output - Print the number of articulation points and bridges on one line. ### Constraints - 1≤n,m≤105. - 1≤u,v≤n. ### Example Input: 651323344546 Output: 25