Pagini recente » Cod sursa (job #1633231) | Cod sursa (job #1632691) | Cod sursa (job #1437985) | Cod sursa (job #3222920) | Cod sursa (job #2864595)
#include <bits/stdc++.h>
#define oo 2000000001
using namespace std;
ifstream f("apm.in");
ofstream g("apm.out");
int n,m;
vector < pair < int , int > > v[200005];
int x,y,c;
bool viz[200005];
int tata[200005],muchie[200005];
int cost;
priority_queue < pair < int , int > , vector < pair < int , int > > , greater < pair < int , int > > > pq;
void read() {
f >> n >> m;
for (int i=1;i<=m;i++) {
f >> x >> y >> c;
v[x].push_back({y,c});
v[y].push_back({x,c});
}
}
void apm() {
fill(muchie+1,muchie+n+1,oo);
muchie[1]=0;
pq.push({0,1});
while (!pq.empty()) {
int nod = pq.top().second;
int distance = pq.top().first;
pq.pop();
if (!viz[nod]) {
cost += distance;
viz[nod]=1;
for (auto k:v[nod]) {
if (muchie[k.first]>k.second && !viz[k.first]) {
pq.push({k.second,k.first});
muchie[k.first]=k.second;
tata[k.first]=nod;
}
}
}
}
}
void show() {
g << cost << '\n' << n-1 << '\n';
for (int i=2;i<=n;i++) {
g << i << " " << tata[i] << '\n';
}
}
int main()
{
read();
apm();
show();
return 0;
}