Poj 2031 building a space station

Source: Internet
Author: User
Tags x2 y2

N space stations input the x, y, and z coordinates and radius of the N space stations in sequence to determine the minimum number of bridges to be repaired for all the stations.

It is also the bare minimum spanning tree. Note that the distance is not less than 0, that is, when the two space stations intersect.

#include<cstdio>#include<cstring>#include<cmath>#include<algorithm>using namespace std;const int N = 105, M = 10050;int par[N], n, m;double ans;struct edge{int u, v; double w;} e[M];bool cmp(edge a, edge b){return a.w < b.w;}int Find(int x){    int r = x, tmp;    while(par[r] >= 0) r = par[r];    while(x != r)    {        tmp = par[x];        par[x] = r;        x = tmp;    }    return r;}void Union (int u, int v){    int ru = Find(u), rv = Find(v), tmp = par[ru] + par[rv];    if(par[ru] < par[rv])        par[rv] = ru, par[ru] = tmp;    else        par[ru] = rv, par[rv] = tmp;}void kruskal(){    memset(par, -1, sizeof(par));    int cnt = 0;    for(int i = 1; i <= m; ++i)    {        int u = e[i].u, v = e[i].v;        if(Find(u) != Find(v))        {            ++cnt;            ans += e[i].w;            Union(u, v);        }        if(cnt >= n - 1) break;    }}int main(){    double x[N], y[N], z[N], r[N], dis;    while(scanf("%d", &n), n)    {        m = 0;        for(int i = 1; i <= n; ++i)        {            scanf("%lf%lf%lf%lf", &x[i], &y[i], &z[i], &r[i]);            for(int j = 1; j < i; ++j)            {                double tx = x[i] - x[j], ty = y[i] - y[j], tz = z[i] - z[j];                double dis = sqrt(tx * tx + ty * ty + tz * tz) - r[i] - r[j];                e[++m].u = i, e[m].v = j, e[m].w = max(0.0, dis);            }        }        sort(e + 1, e + m + 1, cmp);        ans = 0;        kruskal();        printf("%.3f\n", ans);    }    return 0;}

Building a space station

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 shocould 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) shocould 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 shoshould 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 are 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 shocould be printed, each in a separate line. the printed values shoshould 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

310.000 10.000 50.000 10.00040.000 10.000 50.000 10.00040.000 40.000 50.000 10.000230.000 30.000 30.000 20.00040.000 40.000 40.000 20.00055.729 15.143 3.996 25.8376.013 14.372 4.818 10.67180.115 63.292 84.477 15.12064.095 80.924 70.029 14.88139.472 85.116 71.369 5.5530

Sample output

20.0000.00073.834


Poj 2031 building a space station

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.