zoukankan      html  css  js  c++  java
  • hdoj--1162--Eddy's picture(最小生成树)

    Eddy's picture

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 8562    Accepted Submission(s): 4339


    Problem Description
    Eddy begins to like painting pictures recently ,he is sure of himself to become a painter.Every day Eddy draws pictures in his small room, and he usually puts out his newest pictures to let his friends appreciate. but the result it can be imagined, the friends are not interested in his picture.Eddy feels very puzzled,in order to change all friends 's view to his technical of painting pictures ,so Eddy creates a problem for the his friends of you.
    Problem descriptions as follows: Given you some coordinates pionts on a drawing paper, every point links with the ink with the straight line, causes all points finally to link in the same place. How many distants does your duty discover the shortest length which the ink draws?
     

    Input
    The first line contains 0 < n <= 100, the number of point. For each point, a line follows; each following line contains two real numbers indicating the (x,y) coordinates of the point.

    Input contains multiple test cases. Process to the end of file.
     

    Output
    Your program prints a single real number to two decimal places: the minimum total length of ink lines that can connect all the points.
     

    Sample Input
    3 1.0 1.0 2.0 2.0 2.0 4.0
     

    Sample Output
    3.41
     

    Author
    eddy
     

    Recommend
    JGShining   |   We have carefully selected several similar problems for you:  1217 1142 1213 1325 1856 

    #include<stdio.h>
    #include<math.h>
    #include<string.h>
    #include<algorithm>
    using namespace std;
    struct node
    {
    	int x,y;
    	double val;
    }edge[100100];
    double x[10010],y[10010];
    int cmp(node s1,node s2)
    {
    	if(s1.val<s2.val)
    	return 1;
    	return 0;
    }
    int pre[10010];
    void init()
    {
    	for(int i=0;i<10010;i++)
    	pre[i]=i;
    }
    int find(int x)
    {
    	return pre[x]==x?x:pre[x]=find(pre[x]);
    }
    int main()
    {
    	int n;
    	while(scanf("%d",&n)!=EOF)
    	{
    		for(int i=0;i<n;i++)
    		scanf("%lf%lf",&x[i],&y[i]);
    		int cnt=0;
    		init();
    		for(int i=0;i<n;i++)
    		{
    			for(int j=0;j<n;j++)
    			{
    				if(i==j) continue;
    				edge[cnt].x=i;
    				edge[cnt].y=j;
    				edge[cnt++].val=sqrt((x[i]-x[j])*(x[i]-x[j])+(y[i]-y[j])*(y[i]-y[j]));
    			}
    		}
    		sort(edge,edge+cnt,cmp);
    		double sum=0;
    		for(int i=0;i<cnt;i++)
    		{
    			int fx=find(edge[i].x);
    			int fy=find(edge[i].y);
    			if(fx!=fy)
    			{
    				sum+=edge[i].val;
    				pre[fx]=fy;
    			}
    		}
    		printf("%.2lf
    ",sum);
    	}
    	return 0;
    }


  • 相关阅读:
    C语言实现用户输入
    QQ头像一键添加校徽
    csu oj Infected Computer 1427
    质数个数
    stl实现结构体排序关键语法要点(sort)
    理解 PHP 中的 Streams
    几款主流PHP框架的优缺点评比
    8个开发必备的PHP功能
    5个开发人员不应该错过的最好跨平台PHP编辑器
    推荐五款优秀的PHP代码重构工具
  • 原文地址:https://www.cnblogs.com/playboy307/p/5273516.html
Copyright © 2011-2022 走看看