ACM学习感悟——Aizu2224 (kruskal 最大生成树)

Description

Nicholas Y. Alford was a cat lover. He had a garden in a village and kept many cats in his garden. The cats were so cute that people in the village also loved them.

One day, an evil witch visited the village. She envied the cats for being loved by everyone. She drove magical piles in his garden and enclosed the cats with magical fences running between the piles. She said “Your cats are shut away in the fences until they become ugly old cats.” like a curse and went away.

Nicholas tried to break the fences with a hummer, but the fences are impregnable against his effort. He went to a church and asked a priest help. The priest looked for how to destroy the magical fences in books and found they could be destroyed by holy water. The Required amount of the holy water to destroy a fence was proportional to the length of the fence. The holy water was, however, fairly expensive. So he decided to buy exactly the minimum amount of the holy water required to save all his cats. How much holy water would be required?

Input

The input has the following format:

N M
x
1y1
.
.
.
xNyN
p1q1
.
.
.
pMqM

The first line of the input contains two integers N (2 ≤ N ≤ 10000) and M (1 ≤ M). N indicates the number of magical piles and M indicates the number of magical fences. The following N lines describe the coordinates of the piles. Each line contains two integers xi and yi (-10000 ≤ xi, yi ≤ 10000). The following M lines describe the both ends of the fences. Each line contains two integers pj and qj (1 ≤ pj, qjN). It indicates a fence runs between the pj-th pile and the qj-th pile.

You can assume the following:

  • No Piles have the same coordinates.
  • A pile doesn’t lie on the middle of fence.
  • No Fences cross each other.
  • There is at least one cat in each enclosed area.
  • It is impossible to destroy a fence partially.
  • A unit of holy water is required to destroy a unit length of magical fence.

Output

Output a line containing the minimum amount of the holy water required to save all his cats. Your program may output an arbitrary number of digits after the decimal point. However, the absolute error should be 0.001 or less.

Sample Input 1

3 3
0 0
3 0
0 4
1 2
2 3
3 1

Output for the Sample Input 1

3.000

Sample Input 2

4 3
0 0
-100 0
100 0
0 100
1 2
1 3
1 4

Output for the Sample Input 2

0.000

Sample Input 3

6 7
2 0
6 0
8 2
6 3
0 5
1 7
1 2
2 3
3 4
4 1
5 1
5 4
5 6

Output for the Sample Input 3

7.236

Sample Input 4

6 6
0 0
0 1
1 0
30 0
0 40
30 40
1 2
2 3
3 1
4 5
5 6
6 4

Output for the Sample Input 4

31.000
这道题在我已经知道可能是图论的情况下还是没有想到是最大生成树问题,主要还是对于题意理解的不够,没有把条件抽象出来。题意就是给了一个有环图,每一个环内都有一个猫,要砍掉最小的边,使得图内无环。这样就变成了一个生成树问题,由于题意要求的是砍掉最小的边,那么便可以放过来,来选择最大生成树,这样用总共的权值减掉最大生成树的权值便可以得到答案。
AC代码:
/ 
//                           //                        //
//  Created by  Team 3 			                       //
//  Copyright (c) 2015年 Team 3. All rights reserved.  //
/
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cmath>
#include <cstdlib>           
#include <algorithm>
#include <cctype>
#include <stack>
#include <queue>
#include <map>
#include <string>
#include <set>
#include <vector>
#define INF 0x3f3f3f3f
#define cir(i,a,b)  for (int i=a;i<=b;i++)
#define CIR(j,a,b)  for (int j=a;j>=b;j--)
#define CLR(x) memset(x,0,sizeof(x))
typedef long long  ll;
using namespace std;
#define maxn 10010
struct Edge
{
	int u,v;
	double cost;
}es[maxn*maxn];

int N,M;
int par[maxn*maxn],rank[maxn*maxn];
int x[maxn*maxn],y[maxn*maxn];

void init(int n)
{
	for (int i=0;i<=n;i++)
	{
		par[i]=i;
		rank[i]=0;
	}
}

int find(int x)
{
	if (par[x]==x) return x;
	else return par[x]=find(par[x]);
}

bool cmp(const Edge &a,const Edge &b)
{
	return a.cost>b.cost;
}                                                       //最大生成树和最小生成树就是这个等于号的方向不同。

bool same(int x,int y)
{
	return find(x)==find(y);
}

void unite(int x,int y)
{
	x=find(x);y=find(y);
	if (x==y)  return ;
	if (rank[x]<rank[y]) par[x]=y;
	else
	{
		par[y]=x;
		if (rank[x]==rank[y]) rank[x]++;
	}
}

double kruskal()
{
	init(M);
	sort(es+1,es+1+M,cmp);
	double res=0.00;
	for (int i=1;i<=M;i++)
	{
		Edge &e=es[i];
		if (!same(e.u,e.v))
		{
			unite(e.u,e.v);
			res+=e.cost;
		}
	}
	return res;
}

int main()
{
	while (scanf("%d%d",&N,&M)!=EOF)
	{
		double sum=0.00;
		for (int i=1;i<=N;i++)
			scanf("%d%d",&x[i],&y[i]);
		for (int i=1;i<=M;i++)
		{
			int u,v;
			scanf("%d%d",&u,&v);
			es[i].u=u;
			es[i].v=v;
			es[i].cost=sqrt((x[u]-x[v])*(x[u]-x[v])+(y[u]-y[v])*(y[u]-y[v]));
			sum+=es[i].cost;
		}
//		cout << sum << endl;
		double ans=kruskal();
		printf("%.3lf\n",sum-ans);
	}
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值