Save your cat Aizu - 2224

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
x1 y1
.
.
.
xN yN
p1 q1
.
.
.
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 ≤ 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

题解:就是题目意思不好懂,实际上也是最小生成树的问题
 1 #include<cmath>
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<iostream>
 5 #include<algorithm>
 6 using namespace std;
 7
 8 const int maxn=50005;
 9
10 struct edge{
11     int u,v;
12     double cost;
13     bool operator<(const edge& i)const{
14         return cost>i.cost;
15     }
16 }es[maxn];
17
18 int n,m;
19 int x[maxn/5],y[maxn/5],F[maxn/5];
20
21 int Find(int a){
22     if(a!=F[a]) F[a]=Find(F[a]);
23     return F[a];
24 }
25
26 bool unite(int a,int b){
27     int x=Find(a),y=Find(b);
28     if(x==y) return false;
29     else { F[x]=y; return true; }
30 }
31
32 double Kruskal(){
33     sort(es,es+m);
34     double ans=0;
35     for(int i=0;i<m;i++) if(unite(es[i].u,es[i].v)) ans=ans+es[i].cost;
36     return ans;
37 }
38
39 int main()
40 {    while(~scanf("%d%d",&n,&m)){
41         for(int i=1;i<=n;i++) F[i]=i;
42         for(int i=1;i<=n;i++) cin>>x[i]>>y[i];
43         int p,q;
44         double sum=0;
45         for(int i=0;i<m;i++){
46             scanf("%d%d",&p,&q);
47             es[i].u=p,es[i].v=q;
48             es[i].cost=sqrt((x[p]-x[q])*(x[p]-x[q])+(y[p]-y[q])*(y[p]-y[q]));
49             sum=sum+es[i].cost;
50         }
51         double ans=sum-Kruskal();
52         printf("%.3f\n",ans);
53     }
54     return 0;
55 }
时间: 2025-01-07 03:36:55

Save your cat Aizu - 2224的相关文章

Save your cat (Aizu 2224 并查集)

Save your cat Time Limit:8000MS     Memory Limit:65536KB     64bit IO Format:%lld & %llu Submit Status 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

AOJ - 2224 Save your cat(最小生成树)

http://acm.hust.edu.cn/vjudge/problem/viewProblem.action?id=45524 NY在自己的花园里养了很多猫.有一天,一个巫婆在N个点设置了魔法,然后有M条关系,每一条在两个点之间有栅栏. NY需要损坏这些栅栏但是需要栅栏长度这么多神奇的水,因为这种水很昂贵所以希望水用的越少越好.输出最少花费. 输入N,M表示N个点,接下来N行每行一个点的坐标,接下来M行每行两个数表示x,y之间有栅栏相连. 没有栅栏会交叉,每个圈都至少有一只猫. 题目意思就是

Week SP1:2014/11/2

一直拖到现在才写,中间还有几道没看.. A:Aizu 0009 Prime Number:素数筛选,注意可能爆内存!!. #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> typedef long long LL; using namespace std; #define REPF( i , a , b ) for (

Hibernate,JPA注解@OneToMany_Set

用例代码如下: 数据库DDL语句 1,CAT表 1 create table CAT 2 ( 3 id VARCHAR2(32 CHAR) not null, 4 create_time TIMESTAMP(6), 5 update_time TIMESTAMP(6), 6 cat_name VARCHAR2(255 CHAR), 7 first_name VARCHAR2(255 CHAR), 8 last_name VARCHAR2(255 CHAR), 9 version NUMBER(1

Hibernate,JPA注解@OneToOne_JoinColumn

一对一(One-to-one),外键关联 用例代码如下: 数据库DDL语句 1,CAT表 1 create table CAT 2 ( 3 id VARCHAR2(32 CHAR) not null, 4 create_time TIMESTAMP(6), 5 update_time TIMESTAMP(6), 6 cat_name VARCHAR2(255 CHAR), 7 first_name VARCHAR2(255 CHAR), 8 last_name VARCHAR2(255 CHAR

AOJ 2224 Save your cats (Kruskal)

题意:给出一个图,去除每条边的花费为边的长度,求用最少的花费去除部分边使得图中无圈. 思路:先将所有的边长加起来,然后减去最大生成树,即得出最小需要破坏的篱笆长度. #include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <vector> using namespace std; int N, M; // 桩数量,篱笆数量 int

docker容器跨服务器的迁移方式export和save(转)

前沿: 这两天把报警平台放在了docker里面跑了,但是宿主机本身性能就不好,所以导致mongodb到挂了好几次了.这次搞了一台牛逼的服务器,虽说是opentstack里面的主机,但是iops 很不错. 感谢向军同学的帮助,不然就升级uek内核就能搞死我. 你的程序放在docker里面迁移起来很是方便,像是以前的话,需要重新部署环境和静态文件. 放在docker里面的话,只是需要export备份封装后,scp.rsync迁移到别的服务器就可以了. 我这边的redis和mongodb分在不同的容器

Can&#39;t save in background: fork: Cannot allocate memory

今天服务器提示不可用,查了了redis日志发现: cat /data/redis/redis-server.log [1316] 17 Jun 13:49:28.032 * 1 changes in 900 seconds. Saving... [1316] 17 Jun 13:49:28.032 # Can't save in background: fork: Cannot allocate memory [1316] 17 Jun 13:49:34.059 * 1 changes in 9

docker容器跨服务器的迁移方式export和save

前沿: 这两天把报警平台放在了docker里面跑了,但是宿主机本身性能就不好,所以导致mongodb到挂了好几次了.这次搞了一台牛逼的服务器,虽说是opentstack里面的主机,但是iops 很不错. 感谢向军同学的帮助,不然就升级uek内核就能搞死我. 你的程序放在docker里面迁移起来很是方便,像是以前的话,需要重新部署环境和静态文件. 放在docker里面的话,只是需要export备份封装后,scp.rsync迁移到别的服务器就可以了. 我这边的redis和mongodb分在不同的容器