-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfind_critical_connections_in_network.cpp
44 lines (44 loc) · 1.11 KB
/
find_critical_connections_in_network.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
41
42
43
44
class Solution {
public:
vector<vector<int>> ans;
vector<vector<int>> graph;
vector<int> id;
vector<int> lowlink;
vector<bool> vis;
int time=0;
void dfs(int node,int parent)
{
id[node]=lowlink[node]=time++;
vis[node]=true;
for(int &x:graph[node])
{
if(parent==x)continue;
if(vis[x]==false)
{
dfs(x,node);
lowlink[node]=min(lowlink[node],lowlink[x]);
if(id[node]<lowlink[x])
ans.push_back({node,x});
}
else
lowlink[node]=min(lowlink[node],id[x]);
}
}
vector<vector<int>> criticalConnections(int n, vector<vector<int>>& connections) {
graph.resize(n);
vis.resize(n,false);
lowlink.resize(n,0);
id.resize(n,0);
for(auto &x:connections)
{
graph[x[0]].push_back(x[1]);
graph[x[1]].push_back(x[0]);
}
for(int i=0;i<n;i++)
{
if(vis[i]==false)
dfs(i,i);
}
return ans;
}
};