zoukankan      html  css  js  c++  java
  • (简单) POJ 2387 Til the Cows Come Home,Dijkstra。

      Description

       Bessie is out in the field and wants to get back to the barn to get as much sleep as possible before Farmer John wakes her for the morning milking. Bessie needs her beauty sleep, so she wants to get back as quickly as possible.

      Farmer John's field has N (2 <= N <= 1000) landmarks in it, uniquely numbered 1..N. Landmark 1 is the barn; the apple tree grove in which Bessie stands all day is landmark N. Cows travel in the field using T (1 <= T <= 2000) bidirectional cow-trails of various lengths between the landmarks. Bessie is not confident of her navigation ability, so she always stays on a trail from its start to its end once she starts it.

      Given the trails between the landmarks, determine the minimum distance Bessie must walk to get back to the barn. It is guaranteed that some such route exists.
     
      最短路模板题。。。
     
    代码如下:
    #include<iostream>
    #include<cstring>
    #include<queue>
    
    using namespace std;
    
    /////////////////////////////////////////////////////////////////
    
    const int MaxN=1010;
    const int INF=10e8;
    
    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];
    bool vis[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]=INF;
            vis[i]=0;
        }
        lowcost[start]=0;
    
        que.push(Node(start,0));
    
        while(!que.empty())
        {
            qtemp=que.top();
            que.pop();
    
            u=qtemp.v;
    
            if(vis[u])
                continue;
    
            vis[u]=1;
    
            len=E[u].size();
    
            for(int i=0;i<len;++i)
            {
                v=E[u][i].v;
                cost=E[u][i].cost;
    
                if(!vis[v] && lowcost[v]>lowcost[u]+cost)
                {
                    lowcost[v]=lowcost[u]+cost;
                    que.push(Node(v,lowcost[v]));
                }
            }
        }
    }
    
    inline void addEdge(int u,int v,int c)
    {
        E[u].push_back(Edge(v,c));
    }
    
    /////////////////////////////////////////////////////////////////
    
    int ans[1010];
    
    int main()
    {
        ios::sync_with_stdio(false);
    
        int N,T;
        int a,b,c;
    
        cin>>T>>N;
    
        for(int i=1;i<=T;++i)
        {
            cin>>a>>b>>c;
    
            addEdge(a,b,c);
            addEdge(b,a,c);
        }
    
        Dijkstra(ans,N,N);
    
        cout<<ans[1]<<endl;
    
        return 0;    
    }
    View Code
  • 相关阅读:
    将博客搬至CSDN
    IDEA安装对应版本的lombok才生效
    shift键复选dataGrid的记录时多余的文本总被选择了。
    git 导出新修改的文件
    svn老鸟转用git必须理解的概念
    java中Long类型和long类型的大小比较
    eclipse反编译插件jadClipse安装使用教程
    js闭包
    java泛型讲解
    常用加密解密算法【RSA、AES、DES、MD5】介绍和使用
  • 原文地址:https://www.cnblogs.com/whywhy/p/4338585.html
Copyright © 2011-2022 走看看