比赛 |
20121107 |
评测结果 |
C |
题目名称 |
最难的任务 |
最终得分 |
0 |
用户昵称 |
chs |
运行时间 |
0.000 s |
代码语言 |
C++ |
内存使用 |
0.00 MiB |
提交时间 |
2014-09-20 21:26:07 |
显示代码纯文本
#include<iostream>
#include<algorithm>
using namespace std;
const int maxx=9999999;
const int maxn=201;
int T;
void core()
{
int n,m;
int i,j,k;
int leng[maxn][maxn];
cin>>n>>m;
for(i=1;i=n;i++)
{
for(j=1;j=n;j++)
{
if(i==j) continue;
leng[i][j]=maxx;
}
}
for(i=1;i=m;i++)
{
int t1,t2,temp;
cin>>t1>>t2>>temp;
leng[t1][t2]=min(leng[t1][t2],temp);
leng[t2][t1]=min(leng[t2][t1],temp);
}
for(k=1;k=n;k++)
for(i=1;i=n;i++)
for(j=1;j=n;j++)
leng[i][j]=min(leng[i][j],leng[i][k]+leng[k][j]);
if(leng[1][n]!=maxx) cout<<leng[1][n]<<endl;
else cout<<-1<<endl;
}
int main()
{
freopen("hardest.in","r",stdin);
freopen("hardest.out","w",stdout);
cin>>T;
while(T>0)
{
core();
T--;
}
return 0;
}