[POJ 1287] Networking, poj1287networking

Source: Internet
Author: User
Tags integer numbers

[POJ 1287] Networking, poj1287networking

Description

You are assigned to design network connections between certain points in a wide area. you are given a set of points in the area, and a set of possible routes for the cables that may connect pairs of points. for each possible route between two points, you are given the length of the cable that is needed to connect the points over that route. note that there may exist your possible routes between two given points. it is assumed that the given possible routes connect (directly or indirectly) each two points in the area.
Your task is to design the network for the area, so that there is a connection (direct or indirect) between every two points (I. e ., all the points are interconnected, but not necessarily by a direct cable), and that the total length of the used cable is minimal.

Input

The input file consists of a number of data sets. each data set defines one required network. the first line of the set contains two integers: the first defines the number P of the given points, and the second the number R of given routes between the points. the following R lines define the given routes between the points, each giving three integer numbers: the first two numbers identify the points, and the third gives the length of the route. the numbers are separated with white spaces. A data set giving only one number P = 0 denotes the end of the input. the data sets are separated with an empty line.
The maximal number of points is 50. the maximal length of a given route is 100. the number of possible routes is unlimited. the nodes are identified with integers between 1 and P (random ). the routes between two points I and j may be given as I j or as j I.

Output

For each data set, print one number on a separate line that gives the total length of the cable used for the entire designed network.

Sample Input

1 02 31 2 372 1 171 2 683 71 2 192 3 113 1 71 3 52 3 893 1 911 2 325 71 2 52 3 72 4 84 5 113 5 101 5 64 2 120

Sample Output

0171626
#include<iostream>#include<algorithm>using namespace std;int top[2505],n,m;struct edge{int x,y,w;}a[2505];bool cmp(edge a,edge b){return a.w<b.w;}int find(int r){    if(top[r]!=r)    top[r]=find(top[r]);    return top[r];}void join(int x,int y){    int fx=find(x),fy=find(y);    if(fx!=fy)    top[fx]=fy;}void init(int n){    for(int i=0;i<=n;i++)    top[i]=i;}int k(){    sort(a+1,a+m+1,cmp);    int cnt=0,ans=0,i;    for(i=1;i<=m;i++)    {        int fx=find(a[i].x),fy=find(a[i].y);        if(fx!=fy)        {            top[fx]=fy;            cnt++;            ans+=a[i].w;        }    }    return ans;}int main(){    int i;    while(scanf("%d",&n)!=EOF,n)    {        scanf("%d",&m);        init(n);        for(i=1;i<=m;i++)        {            scanf("%d%d%d",&a[i].x,&a[i].y,&a[i].w);        }        printf("%d\n",k());    }    return 0;}

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.