-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDfsBiconnectedComponents.java
131 lines (115 loc) · 3.44 KB
/
DfsBiconnectedComponents.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/*
* Modification of Tarjan's Strongly Connected Components (SCC) algorithm to work with biconnected components
*
* Time complexity: O(V + E)
*/
package codebook.graph;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.OutputStreamWriter;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Stack;
import java.util.StringTokenizer;
public class DfsBiconnectedComponents {
static BufferedReader br;
static PrintWriter out;
static StringTokenizer st;
static Stack<Edge> s = new Stack<Edge>();
static ArrayList<Edge> bridges = new ArrayList<Edge>();
static ArrayList<ArrayList<Integer>> adj = new ArrayList<ArrayList<Integer>>();
static int[] low, disc;
static boolean[] v, cutVertex;
static int count = 0;
static int n, m;
public static void main (String[] args) throws IOException {
br = new BufferedReader(new InputStreamReader(System.in));
out = new PrintWriter(new OutputStreamWriter(System.out));
//br = new BufferedReader(new FileReader("in.txt"));
//out = new PrintWriter(new FileWriter("out.txt"));
n = readInt();
m = readInt();
v = new boolean[n];
disc = new int[n];
low = new int[n];
cutVertex = new boolean[n];
for (int i = 0; i < n; i++)
adj.add(new ArrayList<Integer>());
for (int i = 0; i < m; i++) {
int a = readInt() - 1;
int b = readInt() - 1;
adj.get(a).add(b);
adj.get(b).add(a);
}
for (int i = 0; i < n; i++)
if (!v[i])
dfs(i, -1);
while (!s.isEmpty()) {
out.printf("%d-%d ", s.peek().a + 1, s.peek().b + 1);
s.pop();
}
out.printf("%d-%d\n", s.peek().a + 1, s.peek().b + 1);
s.pop();
for (int i = 0; i < n; i++)
if (cutVertex[i])
out.printf("%d is a cut vertex\n", i + 1);
for (Edge e : bridges)
out.printf("%d-%d is a bridge\n", e.a, e.b);
out.close();
}
static void dfs (int i, int prev) {
disc[i] = low[i] = count++;
v[i] = true;
int children = 0;
for (Integer j : adj.get(i)) {
if (!v[j]) {
children++;
s.push(new Edge(i, j));
dfs(j, i);
low[i] = Math.min(low[i], low[j]);
if ((disc[i] == 0 && children > 1) || (disc[i] > 0 && low[j] >= disc[i])) {
cutVertex[i] = true;
while (s.peek().a != i || s.peek().b != j) {
out.printf("%d-%d ", s.peek().a + 1, s.peek().b + 1);
s.pop();
}
out.printf("%d-%d\n", s.peek().a + 1, s.peek().b + 1);
s.pop();
}
if (low[j] > disc[i])
bridges.add(new Edge(i + 1, j + 1));
} else if (j != prev && disc[j] < low[i]) {
low[i] = disc[j];
s.push(new Edge(i, j));
}
}
}
static class Edge {
int a, b;
Edge (int a, int b) {
this.a = a;
this.b = b;
}
}
static String next () throws IOException {
while (st == null || !st.hasMoreTokens())
st = new StringTokenizer(br.readLine().trim());
return st.nextToken();
}
static long readLong () throws IOException {
return Long.parseLong(next());
}
static int readInt () throws IOException {
return Integer.parseInt(next());
}
static double readDouble () throws IOException {
return Double.parseDouble(next());
}
static char readCharacter () throws IOException {
return next().charAt(0);
}
static String readLine () throws IOException {
return br.readLine().trim();
}
}