-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkruskal.cpp
103 lines (95 loc) · 2.17 KB
/
kruskal.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
#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <utility>
const int GRAPH_SIZE = 1000;
struct Edge
{
int from;
int to;
double weight;
bool operator<(const Edge& rhs) const
{
return weight > rhs.weight;
}
};
int find_set(int v, std::vector<int>& parent)
{
if (v == parent[v])
{
return v;
}
return parent[v] = find_set(parent[v], parent);
}
void union_sets(int u, int v, std::vector<int>& parent)
{
u = find_set(u, parent);
v = find_set(v, parent);
if (u != v)
{
parent[u] = v;
}
}
void Kruskal(const std::vector<std::vector<Edge>>& graph,
std::vector<Edge>& mst_edges)
{
std::vector<int> components(graph.size());
for (int i = 0; i < components.size(); ++i)
{
components[i] = i;
}
std::priority_queue<Edge> all_edges;
for (int i = 0; i < graph.size(); ++i)
{
for (auto edge : graph[i])
{
if (edge.from < edge.to)
{
all_edges.push(edge);
}
}
}
for (int iteration = 0; iteration < graph.size() - 1; ++iteration)
{
Edge current_edge;
do
{
current_edge = all_edges.top();
all_edges.pop();
}
while (find_set(current_edge.to, components) ==
find_set(current_edge.from, components));
mst_edges.push_back(current_edge);
union_sets(current_edge.from, current_edge.to, components);
}
}
int main()
{
int graph_size, edges;
std::cin >> graph_size >> edges;
std::vector<std::vector<Edge>> graph(graph_size);
for (int i = 0; i < edges; ++i)
{
int from, to;
double weight;
std::cin >> from >> to >> weight;
graph[from].push_back({from, to, weight});
graph[to].push_back({to, from, weight});
}
std::vector<Edge> mst;
Kruskal(graph, mst);
std::sort(mst.begin(), mst.end(),
[](const Edge& e1, const Edge& e2)
{ return std::make_pair(
std::min(e1.from, e1.to), std::max(e1.from, e1.to)) <
std::make_pair(
std::min(e2.from, e2.to), std::max(e2.from, e2.to));
});
for (auto edge : mst)
{
std::cout << std::min(edge.from, edge.to) << ' ' <<
std::max(edge.from, edge.to) << ' ' << edge.weight << std::endl;
}
return 0;
}