-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy path1192. Critical Connections in a Network
41 lines (30 loc) · 1.24 KB
/
1192. Critical Connections in a Network
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
class Solution {
int time =0;
List<List<Integer>> result;
public List<List<Integer>> criticalConnections(int n, List<List<Integer>> connections) {
List<Integer>[] adj = new ArrayList[n];
for (int i = 0; i < n; i++) adj[i] = new ArrayList<>();
for(List<Integer> edge:connections){
int a = edge.get(0);
int b = edge.get(1);
adj[a].add(b);
adj[b].add(a);
}
boolean[] visited = new boolean[n];
int[] timestamp = new int[n];
result = new ArrayList<>();
dfs(adj,visited,timestamp,0,-1);
return result;
}
void dfs(List<Integer>[] adj,boolean[] visited,int[] timestamp,int vertex, int prev){
visited[vertex]=true;
timestamp[vertex] = time++;
int currentTimeStamp = timestamp[vertex];
for(int v : adj[vertex]){
if(v == prev) continue;
if(!visited[v]) dfs(adj,visited,timestamp,v,vertex);
timestamp[vertex] = Math.min(timestamp[vertex],timestamp[v]);
if(currentTimeStamp < timestamp[v]) result.add(Arrays.asList(vertex,v));
}
}
}