比赛 20121009 评测结果 RRRRRRRRR
题目名称 最长路 最终得分 0
用户昵称 skyfisherman 运行时间 0.008 s
代码语言 C++ 内存使用 3.18 MiB
提交时间 2012-10-09 19:34:48
显示代码纯文本
#include <iostream>
#include <cstdio>
using namespace std;
const int maxn=1501;

struct list{
    int x,w;
    list *next;
    list(int a,int b,list *p)
    {
        x=a, w=b, next=p;
    }
}*G[maxn];

int x,y,z,h,t,m,n,k;
int dist[maxn],q[maxn<<2];
bool v[maxn];

int main()
{
    scanf("%d%d",&n,&m);
    for(int i=1;i<=m;i++){
        scanf("%d%d%d",&x,&y,&z);
        G[x]=new list(y,z,G[x]);
    }
    for(q[h=t=0]=1;h<=t;h++){
        int x=q[h];
        for(list *p=G[x];p;p=p->next)
            if(dist[p->x]<(k=dist[x]+p->w))
            {
                dist[p->x]=k;
                if(!v[p->x])q[++t]=p->x,v[p->x]=true;
            }
    }
    printf("%d\n",dist[n]); 
    return 0;
}