zoukankan      html  css  js  c++  java
  • POJ 题目2728 Desert King(最优比率生成树)

    Desert King
    Time Limit: 3000MS   Memory Limit: 65536K
    Total Submissions: 21923   Accepted: 6123

    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

    题目大意:
    给你n个点,每一个都有x,y,z坐标,建立一个三维生成树,是高度差之和和水平距离之和比率最小,求这个比率
    ac代码
    #include<stdio.h>
    #include<string.h>
    #include<math.h>
    #define INF 1<<30
    struct s
    {
    	double x,y,z;
    }ponit[1010];
    int n,vis[1010];
    double len[1010][1010],high[1010][1010],map[1010][1010];
    double hlen(struct s a,struct s b)
    {
    	return fabs(a.z-b.z);
    }
    double dis(struct s a,struct s b)
    {
    	return sqrt((a.x-b.x)*(a.x-b.x)+(a.y-b.y)*(a.y-b.y));
    }
    double prim(double mid)
    {
    	int i,j;
    	for(i=1;i<=n;i++)
    	{
    		for(j=1;j<=n;j++)
    		{
    			map[i][j]=high[i][j]-mid*len[i][j];
    		}
    	}
    	memset(vis,0,sizeof(vis));
    	vis[1]=1;
    	double sum=0;
    	for(i=2;i<=n;i++)
    	{
    		int flag=-1;
    		double minn=INF;
    		for(j=1;j<=n;j++)
    		{
    			if(!vis[j]&&map[1][j]<minn)
    			{
    				flag=j;
    				minn=map[1][j];
    			}
    		}
    		if(flag==-1)
    			break;
    		vis[flag]=1;
    		sum+=map[1][flag];
    		for(j=1;j<=n;j++)
    		{
    			if(!vis[j]&&map[1][j]>map[flag][j])
    			{
    				map[1][j]=map[flag][j];
    			}
    		}
    	}
    	return sum;
    }
    int main()
    {
    	//int n;
    	while(scanf("%d",&n)!=EOF,n)
    	{
    		int i,j;
    		for(i=1;i<=n;i++)
    			scanf("%lf%lf%lf",&ponit[i].x,&ponit[i].y,&ponit[i].z);
    		for(i=1;i<=n;i++)
    		{
    			for(j=1;j<=n;j++)
    			{
    				len[i][j]=len[j][i]=dis(ponit[i],ponit[j]);
    				high[i][j]=high[j][i]=hlen(ponit[i],ponit[j]);
    			}
    		}
    		double a,b,mid;
    		a=0;
    		b=100;
    		while(b>=a)
    		{
    			mid=(a+b)/2;
    			double temp=prim(mid);
    			if(fabs(temp)<=0.00005)
    				break;
    			if(temp>=0.00005)
    				a=mid;
    			else
    				b=mid;
    		}
    		printf("%.3lf
    ",mid);
    	}
    }

  • 相关阅读:
    25- 解决'python -m pip install --upgrade pip' 报错问题
    2018.4.28 基于java的聊天系统(带完善)
    2018.4.27 Java的Swing常用事件
    2018.4.26 Mac安装Redis5.0.3版本服务器
    2018.4.25 设计模式之策略者模式
    2018.4.24 设计模式之桥接模式
    2018.4.23 数据结构
    2018.4.22 深入理解Java的接口和抽象类
    2018.4.21 如何正确快速安装/卸载云服务器Centos7安装GUI图形化界面GNOME桌面环境
    2018.4.20 设计模式之组合模式
  • 原文地址:https://www.cnblogs.com/wgwyanfs/p/7352526.html
Copyright © 2011-2022 走看看