Poj 2728 desert king

Source: Internet
Author: User
Desert kingtime limit: 3000 msmemory limit: 65536 kbthis 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. ages 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 available ages, 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 versions ages and be built horizontally. since every two versions ages are at different altitudes, they concluded that each channel between two versions ages needed a Vertical Water lifter, which lift water up or let water flow down. the length of the channel is the horizontal distance between the two ages. the cost of the channel is the height of the lifter. you shoshould notice that each village is at a different altitude, and different channels can't share a lifter. channels can intersect safely and no three ages 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. inputthere are several test cases. each test case starts with a line containing a number N (2 <= n <= 1000), which is the number of ages. 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 shoshould not be processed. outputfor 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 shoshould be rounded three digits after the decimal point. sample Input
40 0 00 1 11 1 21 0 30
Sample output
1.000
Sourcebeijing 2005 problem solving: Ratio-specific Spanning Tree
 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 long14 #define pii pair<int,int>15 #define INF 0x3f3f3f3f16 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\n",ans);64     }65     return 0;66 }
View code

 

Poj 2728 desert king

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.