首页 > 代码库 > MST-kruskal
MST-kruskal
hdu 1233
#include<stdio.h> #include<algorithm> using namespace std; struct dis{ int a,b,c; }s[10010]; int cmp(dis x,dis y) { return x.c<y.c; } int z[110]; int f(int y) { int r=y; while(r!=z[r]) r=z[r]; return r; } int merge(int a,int b) { int fx=f(a); int fy=f(b); if(fx!=fy) { if(fx<fy) z[fy]=fx; else z[fx]=fy; return 1; } else return 0; } int main() { int t,i,n,sum,m; while(~scanf("%d",&t),t) { n=t*(t-1)/2; for(i=1;i<=t;i++) z[i]=i; for(i=0;i<n;i++) scanf("%d%d%d",&s[i].a,&s[i].b,&s[i].c); sort(s,s+n,cmp); m=1,sum=0; for(i=0;i<n&&m<t;i++) { if(merge(s[i].a,s[i].b)) { m++; sum+=s[i].c; } } printf("%d\n",sum); } return 0; }
MST-kruskal
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。