This repository was archived by the owner on Nov 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathDFS.cpp
171 lines (158 loc) · 4.12 KB
/
DFS.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
//
// algorithm - some algorithms in "Introduction to Algorithms", third edition
// Copyright (C) 2018 lxylxy123456
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
//
#ifndef MAIN
#define MAIN
#define MAIN_DFS
#endif
#ifndef FUNC_DFS
#define FUNC_DFS
#include "utils.h"
#include "Graph.cpp"
enum DFSColor { white, gray, black };
enum DFSEdgeType { tree, back, forward, cross };
template <typename T>
class DFSInfo {
public:
DFSInfo(): color(white), d(-1), f(-1) {}
void set_color(DFSColor c, size_t& time) {
color = c;
switch (color) {
case white:
break;
case gray:
d = time++;
break;
case black:
f = time++;
break;
}
}
void set_pi(T_ptr<T> p) {
pi = p;
}
enum DFSColor color;
size_t d, f;
T_ptr<T> pi;
};
std::ostream& operator<<(std::ostream& os, const DFSEdgeType& rhs) {
switch (rhs) {
case tree:
return os << "T";
case back:
return os << "B";
case forward:
return os << "F";
case cross:
return os << "C";
default:
return os;
}
}
template <typename T, typename VT>
bool is_ancestor(VT& ans, T u, T v) {
if (u == v)
return true;
DFSInfo<T>& info = ans[v];
if (!info.pi.nil)
return is_ancestor(ans, u, info.pi.val);
else
return false;
}
template <typename GT, typename T, typename VT, typename ET>
void DFSVisit(GT& G, VT& ans, ET edge_ans, T u, size_t& time) {
DFSInfo<T>& info = ans[u];
info.set_color(gray, time);
for (auto i = G.edges_from(u); !i.end(); i++) {
T v = i.d();
DFSInfo<T>& vinfo = ans[v];
switch (vinfo.color) {
case white:
if (edge_ans)
(*edge_ans)[*i] = tree;
vinfo.set_pi(u);
DFSVisit(G, ans, edge_ans, v, time);
break;
case gray:
if (edge_ans)
(*edge_ans)[*i] = back;
break;
case black:
if (edge_ans) {
if (is_ancestor(ans, u, v))
(*edge_ans)[*i] = forward;
else
(*edge_ans)[*i] = cross;
}
break;
}
}
info.set_color(black, time);
}
template <typename T, typename GT, typename VT>
void DFS(GT& G, VT& ans, umap<Edge<T>, DFSEdgeType, EdgeHash<T>>* edge_ans) {
for (auto i = G.V.begin(); i != G.V.end(); i++)
ans[*i] = DFSInfo<T>();
size_t time = 0;
for (auto i = G.V.begin(); i != G.V.end(); i++)
if (ans[*i].color == white)
DFSVisit(G, ans, edge_ans, *i, time);
if (!G.dir && edge_ans) {
auto& ea = *edge_ans;
for (auto i = G.all_edges(); !i.end(); i++)
if (i.s() < i.d()) {
Edge<T> j = (*i).reverse();
if (ea[*i] != ea[j])
ea[*i] = ea[j] = std::min(ea[*i], ea[j]);
}
}
}
#endif
#ifdef MAIN_DFS
int main(int argc, char *argv[]) {
const size_t v = get_argv(argc, argv, 1, 5);
const size_t e = get_argv(argc, argv, 2, 10);
const bool dir = get_argv(argc, argv, 3, 0);
GraphAdjList<size_t> G(dir);
random_graph(G, v, e);
umap<size_t, DFSInfo<size_t>> inf;
umap<Edge<size_t>, DFSEdgeType, EdgeHash<size_t>> edge_inf;
DFS(G, inf, &edge_inf);
auto f1 = [inf](size_t v) mutable {
DFSInfo<size_t>& i = inf[v];
std::cout << " [";
switch (i.color) {
case white:
break;
case black:
std::cout << "color=black style=filled fontcolor=white ";
break;
case gray:
std::cout << "color=gray style=filled ";
break;
}
std::cout << "label=\"" << v << "\\n" << "d = " << i.d;
std::cout << "; f = " << i.f << "; pi = " << i.pi << "\"]";
return true;
};
auto f2 = [edge_inf](Edge<size_t> e) mutable {
std::cout << " [" << "label=\"" << edge_inf[e] << "\"]";
};
graphviz(G, f1, f2);
return 0;
}
#endif