zoukankan      html  css  js  c++  java
  • POJ(2728)Desert King

    Description

    David the Great has just become the king of a desert country. To win the respect of his people, he decided to build channels all over his country to bring water to every village. Villages which are connected to his capital village will be watered. As the dominate ruler and the symbol of wisdom in the country, he needs to build the channels in a most elegant way. 

    After days of study, he finally figured his plan out. He wanted the average cost of each mile of the channels to be minimized. In other words, the ratio of the overall cost of the channels to the total length must be minimized. He just needs to build the necessary channels to bring water to all the villages, which means there will be only one way to connect each village to the capital. 

    His engineers surveyed the country and recorded the position and altitude of each village. All the channels must go straight between two villages and be built horizontally. Since every two villages are at different altitudes, they concluded that each channel between two villages needed a vertical water lifter, which can lift water up or let water flow down. The length of the channel is the horizontal distance between the two villages. The cost of the channel is the height of the lifter. You should notice that each village is at a different altitude, and different channels can't share a lifter. Channels can intersect safely and no three villages are on the same line. 

    As King David's prime scientist and programmer, you are asked to find out the best solution to build the channels.

    Input

    There are several test cases. Each test case starts with a line containing a number N (2 <= N <= 1000), which is the number of villages. Each of the following N lines contains three integers, x, y and z (0 <= x, y < 10000, 0 <= z < 10000000). (x, y) is the position of the village and z is the altitude. The first village is the capital. A test case with N = 0 ends the input, and should not be processed.

    Output

    For each test case, output one line containing a decimal number, which is the minimum ratio of overall cost of the channels to the total length. This number should be rounded three digits after the decimal point.

    Sample Input

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

    Sample Output

    1.000

    Source

    题解:

    最优斜率生成树,二分写法

    #pragma GCC optimize(3)
    #include <cstdio>
    #include <algorithm>
    #include <cmath>
    #include <cstring>
    #define Exp 1e-7
    using namespace std;
    const int MAXN=1001;
    const int INF=0x3f3f3f3f;
    struct  node{
        int x,y,z;
    }Edge[MAXN];
    int n;
    double mapp[MAXN][MAXN];
    inline double dis(double x1,double y1,double x2, double y2)
    {
        return sqrt(1.0*(x1-x2)*(x1-x2)+1.0*(y1-y2)*(y1-y2));
    }
    inline void creat()
    {
        for (int i = 1; i <=n ; ++i) {
            for (int j = 1; j <=n ; ++j) {
                mapp[i][j]=dis(Edge[i].x,Edge[i].y,Edge[j].x,Edge[j].y);
            }
        }
    }
    double d[MAXN];
    bool vis[MAXN];
    
    inline double prime(double mid)
    {
        memset(vis,0, sizeof(vis));
        for (int i = 1; i <=n ; ++i) {
            d[i]=abs(Edge[1].z-Edge[i].z)-mapp[1][i]*mid;
        }
        vis[1]=true;
        double ans=0;
        for (int i = 1; i <n ; ++i) {
            int v=-1;double MIN=INF;
            for (int j = 1; j <=n ; ++j) {
                if(MIN>=d[j]&&!vis[j])
                {
                    v=j;
                    MIN=d[j];
                }
            }
            if(v==-1)
                break;
                   vis[v]=true;
            ans+=MIN;
            for (int j = 1; j <=n ; ++j) {
                if(!vis[j]&&(fabs(Edge[v].z-Edge[j].z)-mapp[v][j]*mid)<d[j])
                    d[j]=(fabs(Edge[v].z-Edge[j].z)-mapp[v][j]*mid);
            }
        }
        return ans;
    }
    int main()
    {
        while(scanf("%d",&n)&&n){
            for (int i = 1; i <=n ; ++i) {
                scanf("%d%d%d",&Edge[i].x,&Edge[i].y,&Edge[i].z);
            }
            double l=0,r=40.0;
            double mid=0;
            creat();
            while(fabs(r-l)>Exp)
            {
                mid=(l+r)/2;
                if(prime(mid)>=0)
                    l=mid;
                else
                    r=mid;
            }
            printf("%.3f
    ",mid);
        }
        return 0;
    }
    
    
    //poj2728
    

      

  • 相关阅读:
    jcaptcha验证码使用(二)
    jcaptcha验证码使用(一)
    CentOS7 常用命令集合
    VM虚拟机下安装Centos7.0图文教程
    CentOS 6.5远程连接工具x shell
    Mogodb 存储DateTime问题
    RabbitMQ安装教程
    Redis 安装
    Linux平台安装MongoDB
    Windows 平台安装 MongoDB
  • 原文地址:https://www.cnblogs.com/-xiangyang/p/9757078.html
Copyright © 2011-2022 走看看