-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprim.cpp
75 lines (58 loc) · 1.38 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <queue>
using namespace std;
vector<pair <int,int> > graph[100000];
int vis[100000];
void make_graph(){
int a,b, wt,n,m;
pair<int,int> temp1;
cin>>n>>m;
for (int i=0; i<m; i++){
cin >> a >> b >> wt;
temp1.first=wt;
temp1.second=b;
graph[a].push_back(temp1);
temp1.first=wt;
temp1.second=a;
graph[b].push_back(temp1);
}
}
int prim(){
int source, current_node, dist,next_node, minimum_distance, sum=0;
pair<int,int> temp1;
priority_queue< pair<int,int> > q;
for(int i=0; i<100000; i++)
vis[i]=0;
cin>>source;
temp1.first=0;
temp1.second=source;
q.push(temp1);
while(!q.empty()){
temp1=q.top();
q.pop();
if(vis[temp1.second]==0){
current_node=temp1.second;
sum+=-temp1.first;
// cout<<"yoyo"<<-temp1.first<<temp1.second<<endl;
vis[temp1.second]=1;
for(auto neighbour : graph[current_node]){
temp1.first=-neighbour.first;
temp1.second=neighbour.second;
if (vis[neighbour.second]==0){
q.push(temp1);
// cout<<-temp1.first<<temp1.second<<endl;
}
}
}
}
return sum;
}
int main(){
make_graph();
cout<<prim();
return 0;
}