-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathgraph_edge_property.cpp
59 lines (53 loc) · 1.54 KB
/
graph_edge_property.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
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef vector<vi> vvi;
const int mod = 1000000007;
const int sze = 100010;
int dr[] = {1, 1, 0, -1, -1, -1, 0, 1};
int dc[] = {0, 1, 1, 1, 0, -1, -1 , -1};
//detects if a cycle is present in the graph or not
//also prints all
// backedge EXPLORED-->UNVISITED
// treeedge EXPLORED-->EXPLORED
// forward cross edge EXPLORED-->VISITED
enum pstate {VISITED, UNVISITED, EXPLORED}; //p for possible
vector<pstate> state;
vi parent;
vi g[205]; //graph g can contain maximum 100 vertices
void addEdge(int u, int v, bool isBidirectonal) {
//adds edge from ver u--v
g[u].push_back(v);
if (isBidirectonal) g[v].push_back(u);
}
void graphcheck(int src){
state[src] = EXPLORED;
for(auto ngbr : g[src]){
if (state[ngbr] == UNVISITED){ //Explored to Unvisited
parent[ngbr] = src;
cout << "TREE-EDGE : " << src << "-->" << ngbr << endl;
graphcheck(ngbr);
}
else if (state[ngbr] == EXPLORED && ngbr != parent[src]){
//parent[ngbr] != src prevents bidirectional edge to be considered as back edge
cout << "BACK-EDGE :" << src << "-->" << ngbr << endl;
//cycle detected
}
else if (state[ngbr] == VISITED){
cout << "FORWARD-EDGE :" << src << "-->" << ngbr << endl ;
}
}
state[src] = VISITED;
}
int main(){
freopen("in","r", stdin);
int n; cin >> n;
int u, v, dir;
while (cin >> u && cin >> v && cin >> dir) {
addEdge(u, v, dir);
}
parent.resize(n);
state.assign(n, UNVISITED);
for(int i = 0; i < n; ++i) if (state[i] == UNVISITED) graphcheck(i);
}