记录编号 |
300258 |
评测结果 |
AAAAAAAAA |
题目名称 |
[NOIP 2010冲刺七]最长路 |
最终得分 |
100 |
用户昵称 |
AntiLeaf |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.047 s |
提交时间 |
2016-08-28 11:17:31 |
内存使用 |
0.10 MiB |
显示代码纯文本
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn=1510,maxe=50010;
int n,m,dis[maxn]={0},s[maxe],t[maxe],d[maxe];
inline int MAIN(){
#define MINE
#ifdef MINE
freopen("longest.in","r",stdin);
freopen("longest.out","w",stdout);
#endif
scanf("%d%d",&n,&m);
memset(dis,-64,sizeof(int)*(n+5));
dis[1]=0;
for(int i=1;i<=m;i++)scanf("%d%d%d",&s[i],&t[i],&d[i]);
for(int k=1;k<=n;k++)for(int i=1;i<=m;i++)dis[t[i]]=max(dis[t[i]],dis[s[i]]+d[i]);
printf("%d",dis[n]>0?dis[n]:-1);
return 0;
}
int hzoier=MAIN();
int main(){;}