POJ 2031 Building a Space Station Prim基本模板题

灰太狼 2024-02-19 18:30 101阅读 0赞

Building a Space Station














Time Limit: 1000MS   Memory Limit: 30000K
Total Submissions: 13646   Accepted: 6105

Description

You are a member of the space station engineering team, and are assigned a task in the construction process of the station. You are expected to write a computer program to complete the task.
The space station is made up with a number of units, called cells. All cells are sphere-shaped, but their sizes are not necessarily uniform. Each cell is fixed at its predetermined position shortly after the station is successfully put into its orbit. It is quite strange that two cells may be touching each other, or even may be overlapping. In an extreme case, a cell may be totally enclosing another one. I do not know how such arrangements are possible.

All the cells must be connected, since crew members should be able to walk from any cell to any other cell. They can walk from a cell A to another cell B, if, (1) A and B are touching each other or overlapping, (2) A and B are connected by a `corridor’, or (3) there is a cell C such that walking from A to C, and also from B to C are both possible. Note that the condition (3) should be interpreted transitively.

You are expected to design a configuration, namely, which pairs of cells are to be connected with corridors. There is some freedom in the corridor configuration. For example, if there are three cells A, B and C, not touching nor overlapping each other, at least three plans are possible in order to connect all three cells. The first is to build corridors A-B and A-C, the second B-C and B-A, the third C-A and C-B. The cost of building a corridor is proportional to its length. Therefore, you should choose a plan with the shortest total length of the corridors.

You can ignore the width of a corridor. A corridor is built between points on two cells’ surfaces. It can be made arbitrarily long, but of course the shortest one is chosen. Even if two corridors A-B and C-D intersect in space, they are not considered to form a connection path between (for example) A and C. In other words, you may consider that two corridors never intersect.

Input

The input consists of multiple data sets. Each data set is given in the following format.

n
x1 y1 z1 r1
x2 y2 z2 r2

xn yn zn rn

The first line of a data set contains an integer n, which is the number of cells. n is positive, and does not exceed 100.

The following n lines are descriptions of cells. Four values in a line are x-, y- and z-coordinates of the center, and radius (called r in the rest of the problem) of the sphere, in this order. Each value is given by a decimal fraction, with 3 digits after the decimal point. Values are separated by a space character.

Each of x, y, z and r is positive and is less than 100.0.

The end of the input is indicated by a line containing a zero.

Output

For each data set, the shortest total length of the corridors should be printed, each in a separate line. The printed values should have 3 digits after the decimal point. They may not have an error greater than 0.001.

Note that if no corridors are necessary, that is, if all the cells are connected without corridors, the shortest total length of the corridors is 0.000.

Sample Input

  1. 3
  2. 10.000 10.000 50.000 10.000
  3. 40.000 10.000 50.000 10.000
  4. 40.000 40.000 50.000 10.000
  5. 2
  6. 30.000 30.000 30.000 20.000
  7. 40.000 40.000 40.000 20.000
  8. 5
  9. 5.729 15.143 3.996 25.837
  10. 6.013 14.372 4.818 10.671
  11. 80.115 63.292 84.477 15.120
  12. 64.095 80.924 70.029 14.881
  13. 39.472 85.116 71.369 5.553
  14. 0

Sample Output

  1. 20.000
  2. 0.000
  3. 73.834

Source

Japan 2003 Domestic

题意解读: 在立体几何中,把一些球体联通起来,求这个最小距离,注意数据类型double,

如果两个球心距离不大于它们的半径和,则默认距离为0,他们已经连在一块了

剩下的套用Prim模板,就OK了

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<algorithm>
  4. #include<string.h>
  5. #include<cmath>
  6. using namespace std;
  7. const int range=101;
  8. #define INF 0x3f3f3f3f
  9. double map[range][range];
  10. int vis[range];
  11. double dis[range];
  12. struct node
  13. {
  14. double x,y,z;
  15. double r;
  16. }s[range];
  17. double Prim(int n)
  18. {
  19. double sum=0;
  20. int pos=0;
  21. vis[pos]=1;
  22. for(int i=1;i<n;i++)
  23. {
  24. dis[i]=map[pos][i];
  25. }
  26. for(int i=0;i<n-1;i++)
  27. {
  28. double min=INF;
  29. for(int j=0;j<n;j++)
  30. {
  31. if(!vis[j]&&min>dis[j])
  32. {
  33. min=dis[j];
  34. pos=j;
  35. }
  36. }
  37. sum+=min;
  38. vis[pos]=1;
  39. for(int j=0;j<n;j++)
  40. {
  41. if(!vis[j]&&dis[j]>map[pos][j])
  42. dis[j]=map[pos][j];
  43. }
  44. }
  45. return sum;
  46. }
  47. int main()
  48. {
  49. int n;
  50. while(~scanf("%d",&n),n)
  51. {
  52. for(int i=0;i<n;i++)
  53. {
  54. scanf("%lf %lf %lf %lf",&s[i].x,&s[i].y,&s[i].z,&s[i].r);
  55. }
  56. int i,j;
  57. double dis_r;
  58. memset(map,INF,sizeof(map));
  59. memset(vis,0,sizeof(vis));
  60. memset(dis,INF,sizeof(dis));
  61. for(i=0;i<n;i++)
  62. {
  63. for(j=0;j<n;j++)
  64. {
  65. if(i!=j)
  66. {
  67. dis_r=sqrt((s[i].x-s[j].x)*(s[i].x-s[j].x)+(s[i].y-s[j].y)*(s[i].y-s[j].y)+(s[i].z-s[j].z)*(s[i].z-s[j].z))-s[i].r-s[j].r;
  68. if(dis_r>0)
  69. map[i][j]=map[j][i]=dis_r;
  70. else
  71. {
  72. map[i][j]=map[j][i]=0;
  73. }
  74. }
  75. }
  76. }
  77. printf("%.3lf\n",Prim(n));
  78. }
  79. return 0;
  80. }

发表评论

表情:
评论列表 (有 0 条评论,101人围观)

还没有评论,来说两句吧...

相关阅读