Pagini recente » Cod sursa (job #2696321) | Cod sursa (job #176542) | Cod sursa (job #648464) | Clasament runda12 | Cod sursa (job #2695784)
#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<vector>
#include<set>
#include<map>
using namespace std;
#define x first
#define y second
#define NMAX 100005
int father[NMAX], group[NMAX], n, m, answer;
vector< pair<int, pair<int, int> > > edges;
vector< pair<int, int> > apm;
int findFather(int node) {
if(node == father[node])
return node;
int new_father = findFather(father[node]);
father[node] = new_father;
return new_father;
}
int main () {
int a, b, cost;
freopen("apm.in", "r", stdin);
freopen("apm.out", "w", stdout);
scanf("%d%d", &n, &m);
for(int i = 1; i <= m; i++) {
scanf("%d%d%d", &a, &b, &cost);
edges.push_back(make_pair(cost, make_pair(a, b)));
}
sort(edges.begin(), edges.end());
for(int i = 1; i <= n; i++) {
father[i] = i;
group[i] = 1;
}
for(auto edge : edges) {
int a = edge.second.first;
int b = edge.second.second;
int fa = findFather(a);
int fb = findFather(b);
if(fa == fb) {
continue;
}
apm.push_back(edge.second);
answer += edge.first;
if(group[fa] > group[fb]) {
father[fb] = fa;
group[fa] += group[fb];
}
else {
father[fa] = fb;
group[fb] += group[fa];
}
}
printf("%d\n%d\n", answer, n - 1);
for(auto edge : apm) {
printf("%d %d\n", edge.first, edge.second);
}
return 0;
}