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;
    }


  • 相关阅读:
    WPF编程学习——样式
    WPF编程学习——布局
    AngularJs学习笔记--concepts(概念)
    AngularJs学习笔记--html compiler
    AngularJs学习笔记--bootstrap
    Linq教程
    SQL通用分页存储过程
    JS时间倒计时
    canvas时钟可随着画布变大而比例变大
    ie下placeholder解决办法
  • 原文地址:https://www.cnblogs.com/playboy307/p/5273516.html
Copyright © 2011-2022 走看看