Uva101__connect the Campus (minimal spanning tree) (graph theory), graph theory, and Its Application

Source: Internet
Author: User

Uva101__connect the Campus (minimal spanning tree) (graph theory), graph theory, and Its Application

Solution report

Question Portal

Question:

To minimize the cost of school network intercommunication, some buildings already have lines.

Ideas:

Of course, all existing lines use the least cost. If the existing line is regarded as the cost of 0, the Minimum Spanning Tree is obtained.

#include <iostream>#include <cstdio>#include <cstring>#include <cmath>#define inf 0x3f3f3f3fusing namespace std;int n,m,_hash[1110][1110],vis[1100];double mmap[1110][1110],dis[1100];struct node {    double x,y;} p[1110];double disc(node p1,node p2) {    return sqrt((p1.x-p2.x)*(p1.x-p2.x)+(p1.y-p2.y)*(p1.y-p2.y));}void prime() {    for(int i=0; i<n; i++) {        dis[i]=mmap[0][i];        vis[i]=0;    }    double minn=(double )inf,ans=0;    int u;    dis[0]=0;    vis[0]=1;    for(int i=0; i<n-1; i++) {        minn=inf;        for(int j=0; j<n; j++) {            if(!vis[j]&&dis[j]<minn) {                minn=dis[j];                u=j;            }        }        ans+=minn;        vis[u]=1;        for(int j=0; j<n; j++) {            if(!vis[j]&&mmap[u][j]<dis[j]) {                dis[j]=mmap[u][j];            }        }    }    printf("%.2lf\n",ans);}int main() {    int i,j,u,v,w,k=1;    while(~scanf("%d",&n)) {        for(i=0; i<n; i++) {            for(j=0; j<n; j++)                mmap[i][j]=(double)inf;            mmap[i][i]=0;        }        for(i=0; i<n; i++) {            scanf("%lf%lf",&p[i].x,&p[i].y);        }        for(i=0; i<n; i++) {            for(j=0; j<n; j++) {                mmap[i][j]=disc(p[i],p[j]);            }        }        scanf("%d",&m);        while(m--) {            scanf("%d%d",&u,&v);            mmap[u-1][v-1]=mmap[v-1][u-1]=0;        }        prime();    }    return 0;}

Connect the Campus
Input:
Standard input
Output:Standard output
Time Limit:2 seconds

Creating new buildings are under construction on the campus of the University of Waterloo. The university has hired bricklayers, electricians, plumbers, and a computer programmer. A computer programmer? Yes, you have been hired to ensure that each building is connected to every other building (directly or indirectly) through the campus network of communication cables.

We will treat each building as a point specified by an x-coordinate and a y-coordinate. each communication cable connects exactly two buildings, following a straight line between the buildings. information travels along a cable in both directions. cables can freely cross each other, but they are only connected together at their endpoints (at buildings ).

You have been given a campus map which shows the locations of all buildings and existing communication cables. you must not alter the existing cables. determine where to install new communication cables so that all buildings are connected. of course, the university wants you to minimize the amount of new cable that you use.

Fig: University of Waterloo Campus

 

Input

The input file describes several test case. The description of each test case is given below:

The first line of each test case contains the number of buildingsN (1 <= N <= 750). The buildings are labeled from1ToN. The nextNLines giveXAndYCoordinates of the buildings. These coordinates are integers with absolute values at most10000. No two buildings occupy the same point. After that there is a line containing the number of existing cablesM (0 <= M <= 1000)FollowedMLines describing the existing cables. Each cable is represented by two integers: the building numbers which are directly connected by the cable. There is at most one cable directly connecting each pair of buildings.

Output

For each set of input, output in a single line the total length of the new cables that you plan to use, rounded to two decimal places.

Sample Input

4
103 104
104 100
104 103
100 100
1
4 2

4
103 104

104 100

104 103

100 100

1

4 2

 

Sample Output
4.41
4.41





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.