现有村落间道路的统计数据表中,列出了有可能建设成标准公路的若干条道路的成本,求使每个村落都有公路连通所需要的最低成本。
输入格式:
输入数据包括城镇数目正整数N(≤1000)和候选道路数目M(≤3N);随后的M行对应M条道路,每行给出3个正整数,分别是该条道路直接连通的两个城镇的编号以及该道路改建的预算成本。为简单起见,城镇从1到N编号。
输出格式:
输出村村通需要的最低成本。如果输入数据不足以保证畅通,则输出−1,表示需要建设更多公路。
输入样例:
6 15
1 2 5
1 3 3
1 4 7
1 5 4
1 6 2
2 3 4
2 4 6
2 5 2
2 6 6
3 4 6
3 5 1
3 6 1
4 5 10
4 6 8
5 6 3
输出样例:
12
1 #include<cstdio>
2 #include<cstring>
3 #include<iostream>
4 #include<stack>
5 #include<set>
6 #include<map>
7 #include<queue>
8 #include<algorithm>
9 using namespace std;
10 struct edge{
11 int u,v,val,next;
12 };
13 edge e[3005];
14 int h[1005],f[1005];
15 int findf(int a){
16 if(f[a]!=a){
17 f[a]=findf(f[a]);
18 }
19 return f[a];
20 }
21 bool cmp(edge a,edge b){
22 return a.val<b.val;
23 }
24 int main(){
25 //freopen("D:\\INPUT.txt","r",stdin);
26 int n,m,i,j,u,v,num;
27 scanf("%d %d",&n,&m);
28 for(i=1;i<=n;i++){
29 f[i]=i;
30 }
31 for(i=0;i<m;i++){
32 scanf("%d %d %d",&u,&v,&num);
33 e[i].val=num;
34 e[i].v=v;
35 e[i].u=u;
36 }
37 sort(e,e+m,cmp);
38 int count=n;
39 int sum=0;
40 for(i=0;i<m&&count>1;i++){
41 u=e[i].u;
42 v=e[i].v;
43 int fu=findf(u);
44 int fv=findf(v);
45 if(fu!=fv){
46 if(fu>fv){
47 f[fv]=fu;
48 }
49 else{
50 f[fu]=fv;
51 }
52 count--;
53 sum+=e[i].val;
54 }
55 }
56 if(count==1){
57 printf("%d\n",sum);
58 }
59 else{
60 printf("-1\n");
61 }
62 return 0;
63 }