zoukankan      html  css  js  c++  java
  • POJ 1258 Agri-Net (prim水题)

    Agri-Net

    Time Limit : 2000/1000ms (Java/Other)   Memory Limit : 20000/10000K (Java/Other)
    Total Submission(s) : 1   Accepted Submission(s) : 1
    Problem Description
    Farmer John has been elected mayor of his town! One of his campaign promises was to bring internet connectivity to all farms in the area. He needs your help, of course.
    Farmer John ordered a high speed connection for his farm and is going to share his connectivity with the other farmers. To minimize cost, he wants to lay the minimum amount of optical fiber to connect his farm to all the other farms.
    Given a list of how much fiber it takes to connect each pair of farms, you must find the minimum amount of fiber needed to connect them all together. Each farm must connect to some other farm such that a packet can flow from any one farm to any other farm.
    The distance between any two farms will not exceed 100,000.
     
    Input
    The input includes several cases. For each case, the first line contains the number of farms, N (3 <= N <= 100). The following lines contain the N x N conectivity matrix, where each element shows the distance from on farm to another. Logically, they are N lines of N space-separated integers. Physically, they are limited in length to 80 characters, so some lines continue onto others. Of course, the diagonal will be 0, since the distance from farm i to itself is not interesting for this problem.
     
    Output
    For each case, output a single integer length that is the sum of the minimum length of fiber required to connect the entire set of farms.
     
    Sample Input
    4 0 4 9 21 4 0 8 17 9 8 0 16 21 17 16 0
     
    Sample Output
    28
     1 #include <iostream>
     2 #include <cstring>
     3 #include <string>
     4 #include <cstdio>
     5 #include <algorithm>
     6 using namespace std;
     7 int e[105][105];
     8 int d[105];
     9 bool v[105];
    10 int main()
    11 {
    12     int n, i, j;
    13     while (cin >> n)
    14     {
    15         for (i = 1; i <= n; i++)
    16         {
    17             for (j = 1; j <= n; j++)
    18             {
    19                 cin >> e[i][j];
    20             }
    21         }
    22         for (i = 1; i <= n; i++)
    23         {
    24             d[i] = e[1][i];
    25         }
    26         memset(v, 0, sizeof(v));
    27         v[1] = 1;
    28         int s = 0;
    29         for (i = 1; i <= n - 1; i++)
    30         {
    31             int k = -1;
    32             int mi = 99999999;
    33             for (j = 1; j <= n; j++)
    34             {
    35                 if (!v[j] && d[j] <= mi)
    36                 {
    37                     mi = d[j];
    38                     k = j;
    39                 }
    40             }
    41             if (k == -1) break;
    42             v[k] = 1;
    43             s = s + d[k];
    44             for (j = 1; j <= n; j++)
    45             {
    46                 if (!v[j] && d[j] > e[k][j])//这一步和dijkstra不太同,不是d[j]>d[k]+e[k][j]
    47                 {
    48                     d[j] = e[k][j];
    49                 }
    50             }
    51         }
    52         cout << s << endl;
    53     }
    54     return 0;
    55 }
  • 相关阅读:
    java如何遍历Enumeration
    attachEvent与addEventlistener兼容性
    jquery如何把一个html元素替换成另外一个html元素?
    Struts2使用struts标签判断变量是否为空的写法
    ORACLE WITH AS 用法,创建临时表
    Hibernate传递list参数的例子
    java利用反射机制获取list中的某个字段并以list形式返回
    深入Golang之sync.Pool详解
    深入Golang调度器之GMP模型
    软技能,程序员编程之外的升值之道!【转】
  • 原文地址:https://www.cnblogs.com/caiyishuai/p/8444446.html
Copyright © 2011-2022 走看看