zoukankan      html  css  js  c++  java
  • POJ 2387【Til the Cows Come Home】

    Til the Cows Come Home
    Time Limit: 1000MS Memory Limit: 65536K
    Total Submissions: 68408 Accepted: 22943

    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.

    Input

    * Line 1: Two integers: T and N

    * Lines 2..T+1: Each line describes a trail as three space-separated integers. The first two integers are the landmarks between which the trail travels. The third integer is the length of the trail, range 1..100.

    Output

    * Line 1: A single integer, the minimum distance that Bessie must travel to get from landmark N to landmark 1.

    Sample Input

    5 5
    1 2 20
    2 3 30
    3 4 20
    4 5 20
    1 5 100

    Sample Output

    90

    代码:

    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <cmath>
    #include <algorithm>
    #include <vector>
    #include <set>
    #include <map>
    #define INF 99999999
    using namespace std;
    const int maxn=10005;
    int T,N;
    int dis[maxn];
    struct node{
        int from;//起点
        int to;//终点
        int value;//权值
    }e[maxn];
    int main()
    {
        scanf("%d %d",&T,&N);
        for(int i=1;i<=T;i++){
            scanf("%d %d %d",&e[i].from,&e[i].to,&e[i].value);//建立无向图
            e[i+T].to=e[i].from;
            e[i+T].from=e[i].to;
            e[i+T].value=e[i].value;
        }
        for(int i=1;i<=N;i++)
            dis[i]=INF;
        dis[N]=0;
        for(int i=1;i<=N-1;i++){//做N-1次松弛
            int flag=0;
            for(int j=1;j<=2*T;j++){//枚举2*T条边,因为是无向图
                if(dis[e[j].to]>dis[e[j].from]+e[j].value)
                    dis[e[j].to]=dis[e[j].from]+e[j].value;
                    flag=1;
            }
            if(!flag) break;
        }
        printf("%d
    ",dis[1]);
        return 0;
    }
    

  • 相关阅读:
    《白骨精学习法》 21世纪职场必备学习技巧
    英雄不问出处
    整理ArcSDE 安装过程出现问题以及解决方法系列
    ArcEngine9.1结合VS2005开发技巧2则
    推荐一界面控件DotNetBar(含附件)
    常用易忘记Oracle命令(待续)
    ArcSDE中间件技术的生命力(蔡晓兵)
    ArcSDE 的存储机制
    (收藏)ITPUB的ORACLE之常用FAQ V1.0
    ORA01691错误
  • 原文地址:https://www.cnblogs.com/kzbin/p/9205227.html
Copyright © 2011-2022 走看看