-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStrongly_connected_components_Kosaraju_Algorithm.cpp
More file actions
67 lines (56 loc) · 1.17 KB
/
Strongly_connected_components_Kosaraju_Algorithm.cpp
File metadata and controls
67 lines (56 loc) · 1.17 KB
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
//Steps -> 1.Input the given graph 2. Apply the topo sort on graph and keep all nodes in stacks
// 3. Store the graph in reverse direction manner and nullify the vis vector
// 4. Apply the dfs on reverse graph and count strongly connected components
void topo_dfs(int i, vector<int> adj[], vector<int> &vis,
stack<int> &st)
{
vis[i] = 1;
for (auto &it : adj[i])
{
if (!vis[it]) topo_dfs(it, adj, vis, st);
}
st.push(i);
}
void revdfs(int i, vector<int> rev_adj[], vector<int> &vis)
{
vis[i] = 1;
for (auto &it : rev_adj[i])
{
if (!vis[it]) revdfs(it, rev_adj, vis);
}
}
void solve()
{
int n, m;
cin >> n >> m; // nodes and edges
vector<int> adj[n + 1];
for (int i = 0; i < m; i++)
{
int u, v;
cin >> u >> v;
adj[u].push_back(v);
}
vector<int> vis(n + 1, 0);
stack<int> st;
for (int i = 0; i < n; i++)
{
if (!vis[i]) topo_dfs(i, adj, vis, st);
}
//reverse graph
vector<int> rev_adj[n + 1];
for (int i = 0; i < n; i++)
{
vis[i] = 0;
for (auto &it : adj[i])
rev_adj[it].push_back(i);
}
while (!st.empty())
{
int node = st.top(); st.pop();
if (!vis[node])
{
cout << node << " SCC \n";
revdfs(node, rev_adj, vis);
}
}
}