记录编号 | 172701 | 评测结果 | AAAAA | ||
---|---|---|---|---|---|
题目名称 | 最难的任务 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 0.390 s | ||
提交时间 | 2015-07-26 11:15:21 | 内存使用 | 0.46 MiB | ||
#include <fstream> #include <algorithm> #include <cstdio> #include <cstring> #include <ctime> using namespace std; ifstream fin("hardest.in"); ofstream fout("hardest.out"); int tr[201][201]; int main() { int t,n,m,x,y,z,ans; int inf=9999999; fin>>t; for(int i=1;i<=t;i++) { fin>>n>>m; /*for(int j=1;j<=n;j++) { for(int k=1;k<=n;k++) { if(j==k) tr[j][k]=0; else tr[j][k]=inf; } }*/ memset(tr,0x3f,sizeof(tr)); for(int j=1;j<=m;j++) { fin>>x>>y>>z; tr[x][y]=tr[y][x]=min(tr[x][y],z); } for(int j=1;j<=n;j++) tr[j][j]=0; for(int j=1;j<=n;j++) { for(int k=1;k<=n;k++) { if(k!=j) { for(int l=1;l<=n;l++) { if(l!=k&&l!=j) { tr[k][l]=min(tr[k][l],tr[k][j]+tr[j][l]); } } } } } if(tr[1][n]!=0x3f3f3f3f) fout<<tr[1][n]<<endl; else fout<<-1<<endl; } return 0; }