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


  • 相关阅读:
    Xcode7.x中安装Alcatraz
    iOS开发:一个无限滚动自动播放图片的Demo(Swift语言编码)
    ios开发:一个音乐播放器的设计与实现
    iOS开发:深入理解GCD 第二篇(dispatch_group、dispatch_barrier、基于线程安全的多读单写)
    iOS开发:XCTest单元测试(附上一个单例的测试代码)
    设计模式之构造者模式
    控制流程
    变量与常量定义
    go语言内置基础类型
    解决Win10 Virtualbox5.2.18桥接不能联网小记
  • 原文地址:https://www.cnblogs.com/playboy307/p/5273516.html
Copyright © 2011-2022 走看看