比赛 20150714B 评测结果 MMMMM
题目名称 最难的任务 最终得分 0
用户昵称 1azyReaper 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2015-07-14 10:51:03
显示代码纯文本
#include <fstream>
#include <algorithm>
using namespace std;
ifstream fin("hardest.in");
ofstream fout("hardest.out");
int tr[10001][10001];
int main()
{
	int t,n,m,x,y,z;
	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;
			}
		}
		for(int j=1;j<=m;j++)
		{
			fin>>x>>y>>z;
			tr[x][y]=z;
		}
		for(int j=1;j<=n;j++)
		{
			for(int k=1;k<=n;k++)
			{
				for(int l=1;l<=n;l++)
				{
					if(tr[k][l]>tr[k][j]+tr[j][l])
						tr[k][l]=tr[k][j]+tr[j][l];
				}
			}
		}
		if(tr[1][y]!=inf)
			fout<<tr[1][y]<<endl;
		else
			fout<<-1<<endl;
	}
	return 0;
}