Save your cats Aizu - 2224 (最小生成树去环)

Problem C:

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
xy1
.
.
.
xN yN
pq1
.
.
.
pM qM

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 ≤ xiyi ≤ 10000). The following M lines describe the both ends of the fences. Each line contains two integers pj and qj (1 ≤ pjqj ≤ N). 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

解题思路:

题目的意思是.给定一个无向图,图中各顶点都有边相连,每条边的权值为相连两个顶点的权值,求使图中不存在环时去掉的所有边的最小权值之和

我们利用并查集构造最大生成树,首先判断一条边的两个顶点是否在一个并查集中,如果不在,我们就把这条边放到最大生成树中,如果两个顶点已经在并查集中了,说明会形成环,由于我们构造的是最大生成树,边根据边权从大到小排序,所以形成环时的那一条边边权肯定是最小的,此时我们保存这条边的边权,最后进行累加

#include <iostream>
#include <algorithm>
#include <vector>
#include <string.h>
#include <queue>
#include <stdio.h>
#include <math.h>
using namespace std;
const int MAXN = 10010;
const int MAXE = 50010; 
int N, M;

struct fPos {
	int x, y;
}fPoses[MAXN];

struct fEdge {
	int u, v;
	double tCost;
}fEdges[MAXE];  //最大的边长数

int fFather[MAXN]; //并查集

bool fCmp(fEdge a, fEdge b) {
	return a.tCost > b.tCost;  
}


//初始化并查集
void finit() {
	for (int i = 1; i <= N; ++i) {
		fFather[i] = i;
	}
}

//查找结点
int fFindFather(int x) {
	if (fFather[x] != x) {
		fFather[x] = fFindFather(fFather[x]);
	}
	return fFather[x];
}

//合并结点
void funinSet(int a, int b) {
	int fa = fFindFather(a);
	int fb = fFindFather(b);
	if (fa != fb) {
		fFather[fa] = fb;  //合并
	}
}

//共同
bool isSame(int a, int b) {
	int fa = fFindFather(a);
	int fb = fFindFather(b);
	if (fa == fb) return true;
	else return false;
}


int main() {
	while (scanf("%d %d", &N, &M) != EOF) {
		for (int i = 0; i < N; ++i) {
			scanf("%d %d", &fPoses[i].x, &fPoses[i].y);
		}
		int p1, p2;
		for (int i = 0; i < M; ++i) {
			scanf("%d %d", &p1, &p2);
			double ndis = sqrt(pow(fPoses[p1-1].x - fPoses[p2-1].x, 2) + pow(fPoses[p1-1].y - fPoses[p2-1].y, 2)); //求坐标距离
			fEdges[i].u = p1;
			fEdges[i].v = p2;
			fEdges[i].tCost = ndis;
		}
		//Krusak算法
		
		double fres = 0;
		sort(fEdges, fEdges + M, fCmp);
		finit();  //初始化
		for (int i = 0; i < M; ++i) {
			fEdge e = fEdges[i];
			if (!isSame(e.u, e.v)) {
				funinSet(e.u, e.v);
			}
			else {   //在一个连通分量里会形成环,形成环的这条边肯定是最小的
				fres += e.tCost;
			}
		}
		printf("%.3f\n", fres);
	}

	system("PAUSE");
	return 0;
}

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值