-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbottom.cpp
133 lines (126 loc) · 3.01 KB
/
bottom.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
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
132
133
#include<bits/stdc++.h>
using namespace std ;
//Implementation of Strongly connected components using Kosaraju Algorithm
const int MAX = 10003;
//Complexity : O(V + E)
class StronglyConnected {
private:
int V, E, cnt;
stack<int> S;
bool visited[MAX];
vector<int> adj[MAX];
vector<int> trans[MAX];
int components[MAX];
int sol[MAX];
public:
StronglyConnected(int n, int m) {
V = n;
E = m;
cnt = 0;
}
void clear() {
for(int i=1; i<=V; ++i) {
adj[i].clear();
trans[i].clear();
// components[i].clear();
}
}
void set_visited() {
for(int i=1; i<=V; ++i) {
visited[i] = false;
}
}
void add_edge(int a, int b) {
adj[a].push_back(b);
trans[b].push_back(a);
}
void dfs1(int u) {
visited[u] = true;
for(size_t i=0; i<adj[u].size(); ++i) {
if (visited[adj[u][i]] == false) {
dfs1(adj[u][i]);
}
}
S.push(u);
}
void dfs2(int u) {
visited[u] = true;
components[u] = cnt ;
for(size_t i=0; i<trans[u].size(); ++i) {
if(visited[trans[u][i]] == false) {
dfs2(trans[u][i]);
}
}
}
void scc() {
set_visited();
for(int i=1; i<=V; ++i) {
if(!visited[i]) {
dfs1(i);
}
}
set_visited();
cnt = 0;
while(!S.empty()) {
int v = S.top();
S.pop();
if (visited[v] == false) {
dfs2(v);
cnt += 1;
sol[cnt-1] = true ;
}
}
}
bool is_scc() {
return (cnt == 1);
}
int no_of_scc() {
return cnt;
}
// void print() {
// for(int i=0; i<cnt; ++i) {
// printf("Component %d : ", i+1);
// for(size_t j=0; j<components[i].size(); ++j) {
// printf("%d ", components[i][j]);
// }
// printf("\n");
// }
// }
int getAnswer(){
for(int i = 1 ; i <=V ; i ++){
for(int j = 0 ; j<adj[i].size(); ++j){
if(components[i] != components[adj[i][j]]){
sol[components[i]] = false;
break ;
}
}
}
for(int i = 1 ; i <= V ; ++i){
if(sol[components[i]]){
cout << i << " " ;
}
}
cout << endl ;
}
};
int main(){
int v, e ;
while(true){
cin >> v ;
if(v == 0)
break ;
cin >> e ;
int s, d ;
StronglyConnected *obj = new StronglyConnected(v, e);
for(int i = 0 ; i < e ; i++){
cin >> s >> d;
// here the adjacency list and transpose is made
// for each edge
obj->add_edge(s, d);
}
obj->scc();
obj->getAnswer();
//obj->print();
}
return 0;
}