zoukankan      html  css  js  c++  java
  • sicily 1083 Networking

    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 many 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 (inclusive). 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 0
    
    2 3
    1 2 37
    2 1 17
    1 2 68
    
    3 7
    1 2 19
    2 3 11
    3 1 7
    1 3 5
    2 3 89
    3 1 91
    1 2 32
    
    5 7
    1 2 5
    2 3 7
    2 4 8
    4 5 11
    3 5 10
    1 5 6
    4 2 12
    
    0

    Sample Output

    0
    17
    16
    26

    分析:

    最小生成树考察,此处录入边的权值的时候就会进行第一步处理,直接使用Prim算法。因为数据规模很小,所以也就懒得优化了。

    代码:

     1 // Problem#: 1083
     2 // Submission#: 1904485
     3 // The source code is licensed under Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License
     4 // URI: http://creativecommons.org/licenses/by-nc-sa/3.0/
     5 // All Copyright reserved by Informatic Lab of Sun Yat-sen University
     6 #include <iostream>
     7 using namespace std;
     8 
     9 #define MAX 51
    10 #define INF 1000
    11 
    12 int len[MAX][MAX];
    13 int tmp[MAX];
    14 
    15 inline int min(int n){
    16     int min = INF;
    17     int re;
    18     for (int i = 1 ; i <= n; ++i) {
    19         if(tmp[i] && tmp[i]<min){
    20             min = tmp[i];
    21             re = i;
    22         }
    23     }
    24     return re;
    25 }
    26 
    27 int mst(int n){
    28     int re = 0;
    29     for (int i = 1; i <= n; ++i)
    30         tmp[i] = len[1][i];
    31     tmp[1] = 0;
    32     for (int i = 2; i <= n; ++i) {
    33         int k = min(n);
    34         re += tmp[k];
    35         tmp[k] = 0;
    36         for (int j = 1; j <= n; ++j)
    37             if (tmp[j] > len[k][j])
    38                 tmp[j] = len[k][j];
    39     }
    40     return re;
    41 }
    42 
    43 int main() {
    44     int p, r, a, b, l;
    45     do {
    46         cin >> p;
    47         if(!p) break;
    48         cin >> r;
    49         for (int i = 1; i <= p; ++i)
    50             for (int j = 1; j <= p ; ++j)
    51                 len[i][j] = INF;
    52         while (r--) {
    53             cin >> a >> b >> l;
    54             if (len[a][b] > l)
    55                 len[a][b] = len[b][a] = l;
    56         }
    57         cout << mst(p) << endl;
    58     } while (true);
    59     return 0;
    60 }
  • 相关阅读:
    Codeforces 271 Div 2 B. Worms
    Codeforces 271 Div 2 A Keyboard
    CSU 1333 Funny Car Racing (最短路)
    CSU 1337 搞笑版费马大定理(2013湖南省程序设计竞赛J题)
    CSU 1328 近似回文词(2013湖南省程序设计竞赛A题)
    HDU 5033 Building
    HDU 1058 Humble Numbers(离线打表)
    HDU 5047 Sawtooth(大数模拟)上海赛区网赛1006
    HDU 5053 the Sum of Cube
    MySQL练习-employees数据库(二)
  • 原文地址:https://www.cnblogs.com/ciel/p/2876841.html
Copyright © 2011-2022 走看看