• hdu 1162 Eddy's picture (prim)


    Eddy's picture
    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 11970    Accepted Submission(s): 6008

    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

    C/C++:

     1 #include <cmath>
     2 #include <cstdio>
     3 #include <climits>
     4 #include <algorithm>
     5 using namespace std;
     6 
     7 int n;
     8 double my_map[110][110];
     9 
    10 struct node
    11 {
    12     double a, b;
    13 }P[110];
    14 
    15 double my_prim()
    16 {
    17     int my_pos = 1, my_book[110] = {0, 1};
    18     double my_ans = 0.0, my_dis[110] = {0, INT_MAX};
    19     for (int i = 2; i <= n; ++ i)
    20         my_dis[i] = my_map[i][my_pos];
    21 
    22     for (int i = 1; i < n; ++ i)
    23     {
    24         double my_temp = INT_MAX;
    25         for (int j = 1; j <= n; ++ j)
    26         {
    27             if (!my_book[j] && my_dis[j] < my_temp)
    28             {
    29                 my_temp = my_dis[j];
    30                 my_pos = j;
    31             }
    32         }
    33         my_ans += my_temp;
    34         my_book[my_pos] = 1;
    35         for (int j = 1; j <= n; ++ j)
    36         {
    37             if (!my_book[j] && my_dis[j] > my_map[j][my_pos])
    38                 my_dis[j] = my_map[j][my_pos];
    39         }
    40     }
    41     return my_ans;
    42 }
    43 
    44 int main()
    45 {
    46     /**
    47         Date Input Initialize
    48     */
    49     while (~scanf("%d", &n))
    50     {
    51         for (int i = 1; i <= n; ++ i)
    52             scanf("%lf%lf", &P[i].a, &P[i].b);
    53         for (int i = 1; i <= n; ++ i)
    54         {
    55             for (int j = i+1; j <= n; ++ j)
    56             {
    57                 double my_temp_a = (P[i].a - P[j].a) * (P[i].a - P[j].a);
    58                 double my_temp_b = (P[i].b - P[j].b) * (P[i].b - P[j].b);
    59                 double my_temp = sqrt(my_temp_a + my_temp_b);
    60                 my_map[i][j] = my_map[j][i] = my_temp;
    61             }
    62         }
    63         printf("%.2lf
    ", my_prim());
    64     }
    65     return 0;
    66 }
  • 相关阅读:
    几种简单的素数判定法(转)
    在Ubuntu下编译WebKit源码
    Struts2+JSON特别让人恶心的一个问题
    强大的asp.net 绑定组件
    关于单点登陆的示例代码
    NHibernate 如何高效的数据翻页?
    FLEX学习网站大全
    pku1207
    windows7试用过程常见问题解答
    什么是HTTPS?
  • 原文地址:https://www.cnblogs.com/GetcharZp/p/9427752.html
Copyright © 2020-2023  润新知