-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy path_1192.cpp
40 lines (34 loc) · 1 KB
/
_1192.cpp
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
// 1192. Critical Connections in a Network
class Solution {
public:
vector<int> rank,lowest;
vector<vector<int>> graph,res;
int solve(int node,int depth,int parent){
if(rank[node]>=0)
return rank[node];
rank[node]=depth;
int ans = depth;
for(auto neighbour:graph[node]){
if(parent==neighbour)
continue;
int back_depth = solve(neighbour,depth+1,node);
if(back_depth>depth){
res.push_back({node,neighbour});
}
ans = min(ans,back_depth);
}
rank[node]=ans;
return ans;
}
vector<vector<int>> criticalConnections(int n, vector<vector<int>>& connections) {
rank = vector<int>(n,-2);
lowest=vector<int>(n,INT_MAX);
graph = vector<vector<int>>(n);
for(auto i:connections){
graph[i[0]].push_back(i[1]);
graph[i[1]].push_back(i[0]);
}
solve(0,0,-1);
return res;
}
};