-
-
Notifications
You must be signed in to change notification settings - Fork 7.3k
/
prim.cpp
57 lines (50 loc) · 1.54 KB
/
prim.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
// C++ program to implement Prim's Algorithm
#include <iostream>
#include <queue>
#include <vector>
using PII = std::pair<int, int>;
int prim(int x, const std::vector<std::vector<PII> > &graph) {
// priority queue to maintain edges with respect to weights
std::priority_queue<PII, std::vector<PII>, std::greater<PII> > Q;
std::vector<bool> marked(graph.size(), false);
int minimum_cost = 0;
Q.push(std::make_pair(0, x));
while (!Q.empty()) {
// Select the edge with minimum weight
PII p = Q.top();
Q.pop();
x = p.second;
// Checking for cycle
if (marked[x] == true) {
continue;
}
minimum_cost += p.first;
marked[x] = true;
for (const PII &neighbor : graph[x]) {
int y = neighbor.second;
if (marked[y] == false) {
Q.push(neighbor);
}
}
}
return minimum_cost;
}
int main() {
int nodes = 0, edges = 0;
std::cin >> nodes >> edges; // number of nodes & edges in graph
if (nodes == 0 || edges == 0) {
return 0;
}
std::vector<std::vector<PII> > graph(nodes);
// Edges with their nodes & weight
for (int i = 0; i < edges; ++i) {
int x = 0, y = 0, weight = 0;
std::cin >> x >> y >> weight;
graph[x].push_back(std::make_pair(weight, y));
graph[y].push_back(std::make_pair(weight, x));
}
// Selecting 1 as the starting node
int minimum_cost = prim(1, graph);
std::cout << minimum_cost << std::endl;
return 0;
}