zoukankan      html  css  js  c++  java
  • POJ 1797 Heavy Transportation

    题目链接:http://poj.org/problem?id=1797

    Heavy Transportation
    Time Limit: 3000MS   Memory Limit: 30000K
    Total Submissions: 30840   Accepted: 8191

    Description

    Background 
    Hugo Heavy is happy. After the breakdown of the Cargolifter project he can now expand business. But he needs a clever man who tells him whether there really is a way from the place his customer has build his giant steel crane to the place where it is needed on which all streets can carry the weight. 
    Fortunately he already has a plan of the city with all streets and bridges and all the allowed weights.Unfortunately he has no idea how to find the the maximum weight capacity in order to tell his customer how heavy the crane may become. But you surely know. 

    Problem 
    You are given the plan of the city, described by the streets (with weight limits) between the crossings, which are numbered from 1 to n. Your task is to find the maximum weight that can be transported from crossing 1 (Hugo's place) to crossing n (the customer's place). You may assume that there is at least one path. All streets can be travelled in both directions.

    Input

    The first line contains the number of scenarios (city plans). For each city the number n of street crossings (1 <= n <= 1000) and number m of streets are given on the first line. The following m lines contain triples of integers specifying start and end crossing of the street and the maximum allowed weight, which is positive and not larger than 1000000. There will be at most one street between each pair of crossings.

    Output

    The output for every scenario begins with a line containing "Scenario #i:", where i is the number of the scenario starting at 1. Then print a single line containing the maximum allowed weight that Hugo can transport to the customer. Terminate the output for the scenario with a blank line.

    Sample Input

    1  
    3 3  
    1 2 3
    1 3 4
    2 3 5
    

    Sample Output

    Scenario #1:
    4

    题目大意:样例个数T,给定N个点,及M条边的最大负载,求顶点1到N的最大流。
         // 1.给定一个双向可达的有向图,求出1->n之间的所有可达路径,每条路径中的最小边的最大值。
    AC代码:
     1 #include <stdio.h>
     2 #include <string.h>
     3 #include <algorithm>
     4 using namespace std;
     5 int visit[1010];
     6 int dis[1010];
     7 int p[1010][1010];
     8 int n;
     9 int dijkstra()
    10 {
    11     int i,j,pos,minn;
    12     for (i = 1; i <= n; i ++)
    13     {
    14         dis[i] = p[1][i];
    15         visit[i] = 0;
    16     }
    17     dis[1] = 0;
    18     visit[1] = 1;
    19 
    20     for (i = 1; i <= n; i ++)
    21     {
    22         minn = 0;
    23         for (j = 1; j <= n; j ++)
    24         {
    25             if (!visit[j] && dis[j] > minn)
    26             {
    27                 minn = dis[j];
    28                 pos = j;
    29             }
    30         }
    31         visit[pos] = 1;
    32         for (j = 1; j <= n; j ++)
    33         {
    34             if(!visit[j] && dis[j] < min(dis[pos],p[pos][j]))
    35                 dis[j] = min(dis[pos],p[pos][j]);
    36         }
    37     }
    38     return dis[n];
    39 }
    40 int main()
    41 {
    42     int t,m,x,y,z,i,j,f = 1;
    43     scanf("%d",&t);
    44     while (t --)
    45     {
    46         scanf("%d%d",&n,&m);
    47         for (i = 1; i <= n; i ++)
    48             for (j = 1; j <= n; j ++)
    49                 p[i][j] = 0;
    50         for (i = 0; i < m; i ++)
    51         {
    52             scanf("%d%d%d",&x,&y,&z);
    53             p[x][y] = p[y][x] = z;
    54         }
    55         printf("Scenario #%d:
    ",f ++);
    56         printf("%d
    
    ",dijkstra());  //注意格式
    57     }
    58 }
    View Code
     
  • 相关阅读:
    How to make MySQL handle UTF-8 properly
    如何禁用Firefox,chrome浏览器“不安全密码警告”
    How to start a VirtualBox VM headless in Windows 10
    Centos7安装activeMQ
    centos7 redis配置
    VirtualBox配置
    Oracle中序列(Sequence)详解
    oracle函数的创建及调用
    jdbcTemplate insert 封装
    macbook eclipse 快捷键
  • 原文地址:https://www.cnblogs.com/yoke/p/5862517.html
Copyright © 2011-2022 走看看