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

    Desert King

    Time Limit: 3000ms
    Memory Limit: 65536KB
    This problem will be judged on PKU. Original ID: 2728
    64-bit integer IO format: %lld      Java class name: Main
     
    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

     
    解题:最有比率生成树
     
     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cmath>
     5 #include <algorithm>
     6 #include <climits>
     7 #include <vector>
     8 #include <queue>
     9 #include <cstdlib>
    10 #include <string>
    11 #include <set>
    12 #include <stack>
    13 #define LL long long
    14 #define pii pair<int,int>
    15 #define INF 0x3f3f3f3f
    16 using namespace std;
    17 const int maxn = 1010;
    18 int cost[maxn][maxn],p[maxn];
    19 int n,x[maxn],y[maxn],z[maxn];
    20 bool vis[maxn];
    21 double d[maxn],w[maxn][maxn];
    22 double Prim(double tmp) {
    23     double sumx = 0,sumy = 0;
    24     for(int i = 1; i <= n; i++) {
    25         p[i] = 1;
    26         d[i] = cost[1][i] - tmp*w[1][i];
    27         vis[i] = false;
    28     }
    29     vis[1] = true;
    30     d[1] = 0;
    31     for(int i = 2; i <= n; i++) {
    32         double MST = INF;
    33         int index = -1;
    34         for(int j = 2; j <= n; j++)
    35             if(!vis[j] && d[j] < MST) MST = d[index = j];
    36         vis[index] = true;
    37         sumx += cost[p[index]][index];
    38         sumy += w[p[index]][index];
    39         for(int j = 1; j <= n; j++)
    40             if(!vis[j] && d[j] > cost[index][j] - tmp*w[index][j]) {
    41                 d[j] = cost[index][j] - tmp*w[index][j];
    42                 p[j] = index;
    43             }
    44     }
    45     return sumx/sumy;
    46 }
    47 int main() {
    48     while(scanf("%d",&n),n) {
    49         for(int i = 1; i <= n; i++) {
    50             scanf("%d %d %d",x+i,y+i,z+i);
    51             for(int j = 1; j < i; j++) {
    52                 cost[i][j] = cost[j][i] = abs(z[i] - z[j]);
    53                 double tmp = (x[i] - x[j])*(x[i] - x[j]) + (y[i] - y[j])*(y[i] - y[j]);
    54                 w[i][j] = w[j][i] = sqrt(tmp);
    55             }
    56         }
    57         double ans = 0;
    58         while(true) {
    59             double tmp = Prim(ans);
    60             if(fabs(ans - tmp) < (1e-4)) break;
    61             ans = tmp;
    62         }
    63         printf("%.3f
    ",ans);
    64     }
    65     return 0;
    66 }
    View Code
  • 相关阅读:
    vue.js中英文api
    easyui combobox重复渲染问题
    大数据新兴思维
    机器学习技法 之 矩阵分解(Matrix Factorization)
    机器学习技法 之 终章(Final)
    CMake 中文简易手册
    线性判别分析(Linear Discriminat Analysis)
    梯度提升机(Gradient Boosting Machine)之 XGBoost
    机器学习技法 之 梯度提升决策树(Gradient Boosted Decision Tree)
    Host是什么?如何设置host文件?
  • 原文地址:https://www.cnblogs.com/crackpotisback/p/3986113.html
Copyright © 2011-2022 走看看