P2872 [USACO07DEC]道路建设Building Roads
总结一下自己做题还缺少的三点。
第一点:即掌握并运用新事物的能力和习惯。学习新事物后应立即理解并运用。
第二点:写代码时要灵活运用手中的笔和自己的大脑。
第三点:写完调试时要掌握自己不会的地方。
完成这三点过程聚精会神才能够做到。
下面附上这道题的代码:
#include <algorithm>
#include <cstring>
#include <cmath>
#include <iostream>
using namespace std;
const int Maxn=10000001;
int n,m;
int xx[Maxn],yy[Maxn],f[Maxn],A,B;
struct node
{
int x;
int y;
double val;
}a[Maxn];
bool cmp(node a,node b)
{
if(a.val==b.val)
return a.x<b.x;
return a.val<b.val;
}
int findr(int x)
{
if(f[x]==x) return f[x];
return f[x]=findr(f[x]);
}
void merge(int x,int y)
{
f[findr(x)]=findr(y);
}
int main()
{
int cnt=0;
cin>>n>>m;
for(int i=1; i<=n; i++)
cin>>xx[i]>>yy[i];
for(int i=1; i<=n; i++)
f[i]=i;
for(int i=1; i<=n; i++)
for(int j=i+1; j<=n; j++) {
a[++cnt].x=i;
a[cnt].y=j;
a[cnt].val=(double)sqrt((double)(xx[i]-xx[j])*(xx[i]-xx[j])+(double)(yy[i]-yy[j])*(yy[i]-yy[j]));
}
for(int i=1; i<=m; i++) {
cin>>A>>B;
a[++cnt].x=A;
a[cnt].y=B;
a[cnt].val=0.0;
}
int top=0;
double ans=0.0;
sort(a+1,a+cnt+1,cmp);
for(int i=1; i<=cnt; i++) {
if(findr(a[++top].x)!=findr(a[top].y)) {
ans+=a[top].val;
merge(a[top].x,a[top].y);
}
}
printf("%.2lf",ans);
return 0;
}