码迷,mamicode.com
首页 > 其他好文 > 详细

hdu 1162 Eddy's picture (prim)

时间:2018-08-06 00:50:52      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:pictures   ble   date   clu   short   line   pre   ESS   struct   

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\n", my_prim());
64     }
65     return 0;
66 }

 

hdu 1162 Eddy's picture (prim)

标签:pictures   ble   date   clu   short   line   pre   ESS   struct   

原文地址:https://www.cnblogs.com/GetcharZp/p/9427752.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!