记录编号 |
389967 |
评测结果 |
AAAAAAAAAA |
题目名称 |
通信线路 |
最终得分 |
100 |
用户昵称 |
Hzoi_Yniverse |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.679 s |
提交时间 |
2017-04-01 11:11:52 |
内存使用 |
35.12 MiB |
显示代码纯文本
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=1510;
struct Edge{
int from,to,next,dis;
}e[maxn*maxn];
int n,len,root[maxn],head[maxn];
bool comp(const Edge &a,const Edge &b){
return a.dis<b.dis;
}
void Insert(int x,int y,int z){
len++;
e[len].from=x; e[len].to=y; e[len].dis=z;
e[len].next=head[x]; head[x]=len;
}
int Find(int x){
if(root[x]!=x) return root[x]=Find(root[x]);
return root[x];
}
int Kruskal(){
sort(e+1,e+len+1,comp);
for(int i=1;i<=n;i++) root[i]=i;
int cnt=0,ans=0;
for(int i=1;i<=len;i++){
int x=e[i].from,y=e[i].to;
int xx=Find(x),yy=Find(y);
if(xx==yy) continue;
root[xx]=yy; ans+=e[i].dis;
cnt++; if(cnt==n-1) break;
}
return ans;
}
int main(){
freopen("mcst.in","r",stdin);
freopen("mcst.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
int x;scanf("%d",&x);
if(x>0&&i<j) Insert(i,j,x);
}
}
printf("%d\n",Kruskal());
return 0;
}