比赛 |
20100419 |
评测结果 |
AAAAAAAAAA |
题目名称 |
城市规划 |
最终得分 |
100 |
用户昵称 |
ybh |
运行时间 |
0.000 s |
代码语言 |
Pascal |
内存使用 |
0.00 MiB |
提交时间 |
2010-04-19 11:29:46 |
显示代码纯文本
- program ChengShiGuiHua;
- var
- way:array[0..100,0..100] of longint;
- path:array[0..100,0..100] of boolean;
- n,i,j,r,k,sum:longint;
-
- begin
- assign(input,'cityroad.in');
- reset(input);
- assign(output,'cityroad.out');
- rewrite(output);
- readln(n);
- for i:=1 to n do
- for j:=1 to n do
- begin
- read(r);
- if r>=1 then
- begin
- way[i,j]:=r;
- path[i,j]:=true;
- end
- else
- begin
- way[i,j]:=10000000;
- path[i,j]:=false;
- end
- end;
- for k:=1 to n do
- for i:=1 to n do
- for j:=1 to n do
- if i<>j then
- if way[i,k]+way[k,j]<=way[i,j] then
- begin
- way[i,j]:=way[i,k]+way[k,j];
- if path[i,j] then
- begin
- path[i,j]:=false;
- path[j,i]:=false;
- end
- end;
- sum:=0;
- for i:=1 to n-1 do
- for j:=i+1 to n do
- if path[i,j]=true then
- sum:=sum+way[i,j];
- writeln(sum);
- for i:=1 to n do
- begin
- for j:=1 to n do
- if path[i,j]
- then write(1,' ')
- else write(0,' ');
- writeln;
- end;
- close(input);
- close(output);
- end.