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

    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
    题意:货物运行时两个地点可以有多条街道连接,每条街道对车辆的最大承载量是不同的,那么现在需要求出从地点1运送货物到地点n所能承载的最大货物量,假如中间有很多条街道相通,能承受的只能是最少的量,那么只需要求出这些最少的中间最大的那个就行
    #include<stdio.h>
    #define INF 0x3f3f3f3f
    #define N 1100
    #define min(a, b) (a < b ? a : b)
    #define max(a, b) (a > b ? a : b)
    int G[N][N], dist[N], visit[N], n; //dist数组存放的是所有从1到i路径之间的每一小段的最小值的最大值
    void Init()
    {
        int i, j;
        for (i = 0; i <= n; i++)
        {
            visit[i] = 0;
            dist[i] = -INF;
            for (j = 0; j <= n; j++)
                G[i][j] = -INF; 
        }
    }
    void Dist()
    {
        int i, j, idex, Min;
        dist[1] = 0;
        for (i = 1; i <= n; i++)
        {
            Min = -INF;
            for (j = 1; j <= n; j++)
            {
                if (dist[j] > Min && !visit[j])
                {
                    Min = dist[j];
                    idex = j;
                }
            }
            visit[idex] = 1;
            for (j = 1; j <= n; j++)
            {
                if (idex == 1)
                {
                    if (!visit[j] && dist[j] < max(dist[idex], G[idex][j]))
                        dist[j] = max(dist[idex], G[idex][j]);
                } //如果idex是1时仍然用min,则dist数组中都是0,为了不影响结果要max,这样dist数组就不会全是0了
                else
                {
                    if (!visit[j] && dist[j] < min(dist[idex], G[idex][j]))
                        dist[j] = min(dist[idex], G[idex][j]);
                }
            }
        }
    }
    int main ()
    {
        int T, m, a, b, c, k = 0;
        scanf("%d", &T);
        while (T--)
        {
            Init();
            k++;
            scanf("%d %d", &n, &m);
            while (m--)
            {
                scanf("%d %d %d", &a, &b, &c);
                G[a][b] = max(G[a][b], c);
                G[b][a] = G[a][b];
            }
            Dist();
            printf("Scenario #%d:
    ", k);
            printf("%d
    ", dist[n]);
            printf("
    ");
        }
        return 0;
    }
  • 相关阅读:
    迭代器实现斐波那契数列
    type 创建类,赋予类静态方法等
    使用types库修改函数
    使用property取代getter和setter方法
    pdb 进行调试
    nonlocal 访问变量
    timeit_list操作测试
    metaclass 拦截类的创建,并返回
    isinstance方法判断可迭代和迭代器
    苹果cms10 官方QQ微信防红防封代码
  • 原文地址:https://www.cnblogs.com/syhandll/p/4678244.html
Copyright © 2011-2022 走看看