码迷,mamicode.com
首页 > 其他好文 > 详细

HDU 1847(Bellman-Ford)

时间:2014-07-29 12:22:16      阅读:296      评论:0      收藏:0      [点我收藏+]

标签:os   io   for   代码   size   ios   ad   hdu   

高仿代码:

#include <iostream>
#include <string.h>
#include <queue>
#include <vector>
#include <utility>
#include <cstdio>
using namespace std;
#define N 205
#define M 2005
const int inf = 0x3f3f3f3f;
int v[M],u[M],d[N],w[M],e;
void addedge(int a,int b,int x){
    v[e]=b;
    u[e]=a;
    w[e++]=x;

}
void bellman_ford(int n){
    for(int i=0;i<n;i++){
        for(int j=0;j<e;j++){
            if(d[v[j]]>d[u[j]]+w[j])
                d[v[j]]=d[u[j]]+w[j];
        }
    }
}
int main(){
    int n,m,a,b,x;
    //freopen("test.txt","r",stdin);
    while(cin>>n>>m){
        e=0;
        memset(d,0x3f,sizeof(d));
        for(int i=0;i<m;i++){
            cin>>a>>b>>x;
            addedge(a,b,x);
            addedge(b,a,x);
        }
        cin>>a>>b;
        d[a]=0;
        bellman_ford(n);
        if(d[b]==inf)cout<<"-1"<<endl;
        else cout<<d[b]<<endl;
    }
    return 0;
}

HDU 1847(Bellman-Ford),布布扣,bubuko.com

HDU 1847(Bellman-Ford)

标签:os   io   for   代码   size   ios   ad   hdu   

原文地址:http://www.cnblogs.com/Mr-Xu-JH/p/3874714.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!