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 pathMST.cpp
142 lines (133 loc) · 3.93 KB
/
MST.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
//
// 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_MST
#endif
#ifndef FUNC_MST
#define FUNC_MST
#include <map>
#include "utils.h"
#include "Graph.cpp"
#include "DisjointSet.cpp"
#include "FibHeap.cpp"
template <typename T, typename WT>
class MSTPrimInfo {
public:
MSTPrimInfo(): pi_nil(true), key_inf(true), in_Q(true) {}
MSTPrimInfo(WT k): key(k), pi_nil(true), key_inf(false), in_Q(true) {}
void set_pi(T p) {
pi = p;
pi_nil = false;
}
void set_key(WT k) {
key = k;
key_inf = false;
}
bool operator<(const MSTPrimInfo& rhs) const {
if (key_inf)
return false;
else if (rhs.key_inf)
return true;
else
return key < rhs.key;
}
T pi;
WT key;
bool pi_nil, key_inf, in_Q;
};
template <typename GT, typename T, typename WT, typename AT>
void MSTKruskal(GT& G, umap_WT& w, AT& A) {
A.clear();
DisjointSetForest<T> DF;
for (auto i = G.V.begin(); i != G.V.end(); i++)
DF.MakeSet(*i);
std::multimap<WT, Edge<T>> E;
for (auto i = G.all_edges(); !i.end(); i++)
E.insert(std::pair<WT, Edge<T>>(w[*i], *i));
for (auto i = E.begin(); i != E.end(); i++)
if (DF.FindSet(i->second.s) != DF.FindSet(i->second.d)) {
A.insert(i->second);
DF.Union(i->second.s, i->second.d);
}
}
template <typename GT, typename T, typename WT, typename IT>
void MSTPrim(GT& G, umap_WT& w, T r, IT& ans) {
using QT = std::pair<MSTPrimInfo<T, WT>, T>;
FibHeap<QT> Q;
umap<T, FNode<QT>*> Q_ptr;
for (auto i = G.V.begin(); i != G.V.end(); i++) {
if (*i == r)
ans[*i] = MSTPrimInfo<T, WT>(0);
else
ans[*i] = MSTPrimInfo<T, WT>();
Q_ptr[*i] = Q.FibHeapInsert(QT(ans[*i], *i));
}
while (Q.FibHeapMinimum()) {
FNode<QT>* m = Q.FibHeapExtractMin();
T u = m->key.second;
delete m;
ans[u].in_Q = false;
for (auto i = G.edges_from(u); !i.end(); i++) {
MSTPrimInfo<T, WT>& info = ans[i.d()];
if (info.in_Q && MSTPrimInfo<T, WT>(w[*i]) < info) {
info.set_pi(u);
info.set_key(w[*i]);
Q.FibHeapDecreaseKey(Q_ptr[i.d()], QT(info, i.d()));
}
}
}
}
#endif
#ifdef MAIN_MST
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 = 0;
const size_t algorithm = get_argv(argc, argv, 3, 0);
GraphAdjList<size_t> G(dir);
random_graph(G, v, e);
umap<Edge<size_t>, size_t, EdgeHash<size_t>> w;
random_weight(G, w, (size_t) 0, e - 1);
if (algorithm == 0) {
uset<Edge<size_t>, EdgeHash<size_t>> A;
MSTKruskal(G, w, A);
auto f1 = [](size_t v) { return false; };
auto f2 = [w, A](Edge<size_t> e) mutable {
std::cout << " [label=\"" << w[e] << "\"";
if (A.find(e) != A.end())
std::cout << " style=bold";
std::cout << "]";
};
graphviz(G, f1, f2);
} else {
umap<size_t, MSTPrimInfo<size_t, size_t>> ans;
MSTPrim(G, w, *G.V.begin(), ans);
auto f1 = [](size_t v) { return false; };
auto f2 = [w, ans](Edge<size_t> e) mutable {
std::cout << " [label=\"" << w[e] << "\"";
if ((!ans[e.s].pi_nil && ans[e.s].pi == e.d) ||
(!ans[e.d].pi_nil && ans[e.d].pi == e.s))
std::cout << " style=bold";
std::cout << "]";
};
graphviz(G, f1, f2);
}
return 0;
}
#endif