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;
    }
    

  • 相关阅读:
    关于MySQL中ALTER TABLE 的命令用法——SQL
    replace函数——SQL
    SQL构造一个触发器
    【视频转换】监控视频DAV转mp4
    【pyqt5+opencv】如何将大量图片合成一张图
    【OpenCV+pyqt5】视频抽帧裁剪与图片转视频
    【Caffe】生成数据之修改label
    【labelme】标注工具Trick
    【OpenCV+pyqt5】视频抽帧相关操作
    【pyqt5】Pyinstaller封装OpenCV异常
  • 原文地址:https://www.cnblogs.com/kzbin/p/9205227.html
Copyright © 2011-2022 走看看