zoukankan      html  css  js  c++  java
  • [USACO14MAR]浇地Watering the Fields

    题目描述

    Due to a lack of rain, Farmer John wants to build an irrigation system tosend water between his N fields (1 <= N <= 2000).Each field i is described by a distinct point (xi, yi) in the 2D plane,

    with 0 <= xi, yi <= 1000. The cost of building a water pipe between twofields i and j is equal to the squared Euclidean distance between them:(xi - xj)^2 + (yi - yj)^2

    FJ would like to build a minimum-cost system of pipes so that all of hisfields are linked together -- so that water in any field can follow asequence of pipes to reach any other field.

    Unfortunately, the contractor who is helping FJ install his irrigationsystem refuses to install any pipe unless its cost (squared Euclideanlength) is at least C (1 <= C <= 1,000,000).

    Please help FJ compute the minimum amount he will need pay to connect all his fields with a network of pipes.

    农民约翰想建立一个灌溉系统,给他的N (1 <= N <= 2000)块田送水。农田在一个二维平面上,第i块农田坐标为(x_i , y_i)(0 <= x_i , y_i <= 1000),在农田i 和农田j自己铺设水管的费用是这两块农田的欧几里得距离的平方(x_i - x_j)^2 + (y_i - y_j)^2。

    农民约翰希望所有的农田之间都能通水,而且希望花费最少的钱。但是安装工人拒绝安装费用小于C的水管(1 <= C<= 1,000,000)。

    请帮助农民约翰建立一个花费最小的灌溉网络,如果无法建立请输出-1。

    输入输出格式

    输入格式:

    * Line 1: The integers N and C.

    * Lines 2..1+N: Line i+1 contains the integers xi and yi.

    输出格式:

    * Line 1: The minimum cost of a network of pipes connecting the fields, or -1 if no such network can be built.

    输入输出样例

    输入样例#1: 
    3 11
    0 2
    5 0
    4 3
    输出样例#1: 
    46

    说明

    INPUT DETAILS:

    There are 3 fields, at locations (0,2), (5,0), and (4,3). The contractor will only install pipes of cost at least 11.

    OUTPUT DETAILS:

    FJ cannot build a pipe between the fields at (4,3) and (5,0), since its cost would be only 10. He therefore builds a pipe between (0,2) and (5,0) at cost 29, and a pipe between (0,2) and (4,3) at cost 17.

    Source: USACO 2014 March Contest, Silver

    分析:

    本题就是一道裸的最小生成树,只需要计算一下每两个点间的费用,并判断与c的关系,进而决定是否加边,但是注意数组是2000*2000,而不是2000,否则会RE。

    CODE:

     1 #include<iostream>
     2 #include<cstdio>
     3 #include<algorithm>
     4 using namespace std;
     5 const int M=4000005;
     6 int n,c,tot,ans;
     7 int fa[M];
     8 int xcor[M],ycor[M];
     9 struct node{
    10     int u,v,w;
    11 }a[M];
    12 int findr(int x){
    13     if (fa[x]==x) return x;
    14     return fa[x]=findr(fa[x]);
    15 }
    16 void merge(int x,int y){
    17     int A=findr(x);
    18     int B=findr(y);
    19     if (fa[A]!=fa[B]) fa[B]=A;
    20     return ;
    21 }
    22 bool cmp(node x,node y){return x.w<y.w;}
    23 int main(){
    24     cin>>n>>c;
    25     for (int i=1;i<=n;i++) fa[i]=i;
    26     for(int i=1;i<=n;i++) cin>>xcor[i]>>ycor[i];
    27     for (int i=1;i<=n;i++){
    28         for (int j=i+1;j<=n;j++){
    29             int cost=(xcor[i]-xcor[j])*(xcor[i]-xcor[j])+(ycor[i]-ycor[j])*(ycor[i]-ycor[j]);
    30             if (cost>=c){
    31                 a[++tot].u=i;
    32                 a[tot].v=j;
    33                 a[tot].w=cost;
    34             }
    35         }
    36     }
    37     sort(a+1,a+tot+1,cmp);
    38     int cnt=0;
    39     for (int i=1;i<=tot;i++){
    40         if (fa[findr(a[i].u)]!=fa[findr(a[i].v)]){
    41             ans+=a[i].w;
    42             merge(a[i].u,a[i].v);
    43             cnt++;
    44         }
    45     }
    46     if (cnt==n-1) cout<<ans<<endl;
    47     else cout<<-1<<endl;
    48     return 0;
    49 }
  • 相关阅读:
    Android文字上下滚动
    Java怎么去除字符串中的多个空白【split(" ")与split("\s+")】
    Java:Scanner.nextLine()和Scnner.next()的区别,以及多条nextLine()输入问题的解决方法
    SQL server报错18456(又名SQL server怎么用sa登入)
    Android Studio快速自动生成findViewById
    java.sql.Date和java.util.Date的联系与区别【转载】
    Linux Crontab 不执行
    PostgreSQL 全量 增量 归档 备份工具 pg_rman介绍与使用(转载)
    Rman备份的保留策略(retention policy) (转载)
    Oracle RMAN block_change_tracking(块更改追踪)
  • 原文地址:https://www.cnblogs.com/kanchuang/p/11177032.html
Copyright © 2011-2022 走看看