• (简单) POJ 1797 Heavy Transportation,Dijkstra。


      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.
     
      题目就是求最大路。。。
     
    代码如下:
    #include<iostream>
    #include<cstring>
    #include<queue>
    #include<vector>
    #include<cstdio>
    
    #define min(a,b) (a<b ? a:b)
    
    using namespace std;
    
    const int INF=10e8;
    const int MaxN=1010;
    
    struct Node
    {
        int v,val;
    
        Node(int _v=0,int _val=0):v(_v),val(_val) {}
        bool operator < (const Node &a) const
        {
            return val<a.val;
        }
    };
    
    struct Edge
    {
        int v,cost;
    
        Edge(int _v=0,int _cost=0):v(_v),cost(_cost) {}
    };
    
    vector <Edge> E[MaxN];
    
    void Dijkstra(int lowcost[],int n,int start)
    {
        priority_queue <Node> que;
        Node qtemp;
        int len;
        int u,v,cost;
    
        for(int i=1;i<=n;++i)
        {
            lowcost[i]=0;
        }
        lowcost[start]=INF;
    
        que.push(Node(start,INF));
    
        while(!que.empty())
        {
            qtemp=que.top();
            que.pop();
    
            u=qtemp.v;
    
    
    
            len=E[u].size();
    
            for(int i=0;i<len;++i)
            {
                v=E[u][i].v;
                cost=E[u][i].cost;
    
                if(min(cost,lowcost[u])>lowcost[v])
                {
                    lowcost[v]=min(cost,lowcost[u]);
                    que.push(Node(v,lowcost[v]));
                }
            }
        }
    }
    
    inline void addEdge(int u,int v,int c)
    {
        E[u].push_back(Edge(v,c));
    }
    
    int ans[MaxN];
    
    int main()
    {
    //    ios::sync_with_stdio(false);
    
        int N,M;
        int a,b,c;
        int T;
    
        scanf("%d",&T);
    
        for(int cas=1;cas<=T;++cas)
        {
            scanf("%d %d",&N,&M);
    
            for(int i=1;i<=N;++i)
                E[i].clear();
    
            for(int i=1;i<=M;++i)
            {
                scanf("%d %d %d",&a,&b,&c);
    
                addEdge(a,b,c);
                addEdge(b,a,c);
            }
    
            Dijkstra(ans,N,1);
    
            printf("Scenario #%d:
    ",cas);
            printf("%d
    
    ",ans[N]);
        }
    
        return 0;
    }
    View Code
  • 相关阅读:
    Xcode 环境下的汇编与 C/C++/ObjC (上)
    OpenGL ES的从地上爬起来,第1部分:
    Accessorizer的使用说明!
    我常用的iphone开发学习网站
    ruby+seleniumwebdriver一步一步完成自动化测试(2)—–一个测试用例
    Selenium Grid深入学习
    Seleniumwebdriver系列教程(14)————为firefox设置代理
    Seleniumwebdriver系列教程(15)————万能的截图
    Selenium Grid
    RSPEC入门学习
  • 原文地址:https://www.cnblogs.com/whywhy/p/4338572.html
Copyright © 2020-2023  润新知