记录编号 |
49086 |
评测结果 |
AAAAA |
题目名称 |
最难的任务 |
最终得分 |
100 |
用户昵称 |
warrior |
是否通过 |
通过 |
代码语言 |
Pascal |
运行时间 |
0.091 s |
提交时间 |
2012-11-07 12:34:34 |
内存使用 |
0.89 MiB |
显示代码纯文本
var a:array[0..300,0..300]of longint;q:Array[0..100000]of longint;
d:array[0..300]of longint;v:array[0..300]of boolean;
sb,x,y,z,t,i,h,r,m,n:longint;
begin
assign(input,'hardest.in');assign(output,'hardest.out');
reset(input);rewrite(output);
readln(r);
for sb:=1 to r do
begin
readln(n,m); fillchar(a,sizeof(a),0);
for i:=1 to m do
begin
readln(x,y,z);if ((a[x,y]>0)and(a[x,y]>z))or(a[x,y]=0) then begin
a[x,y]:=z;a[y,x]:=z; end;
end;
h:=0;t:=1;fillchar(d,sizeof(d),127);fillchar(v,sizeof(v),0);
q[1]:=1;v[1]:=true;d[1]:=0;
while h<t do begin
inc(h);for i:=1 to n do if a[q[h],i]>0 then
if d[i]>d[q[h]]+a[q[h],i] then begin
d[i]:=d[q[h]]+a[q[h],i];
if not v[i]then begin inc(t);q[t]:=i;v[i]:=true;end;
end;
v[q[h]]:=false;
end;
if d[n]>1000000 then writeln('-1') else writeln(d[n]);
end;
close(output);
end.