博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SSL 1761——城市问题[最短路]
阅读量:5162 次
发布时间:2019-06-13

本文共 968 字,大约阅读时间需要 3 分钟。

Description

  设有n个城市,依次编号为0,1,2,……,n-1(n<=100),另外有一个文件保存n个城市之间的距离(每座城市之间的距离都小于等于1000)。当两城市之间的距离等于-1时,表示这两个城市没有直接连接。求指定城市k到每一个城市i(0<=I,k<=n-1)的最短距离。
Input
第一行有两个整数n和k,中间用空格隔开;以下是一个NxN的矩阵,表示城市间的距离,数据间用空格隔开。
Output
输出指定城市k到各城市间的距离(从第0座城市开始,中间用空格分开)
Sample Input
3 1
0 3 1
3 0 2
1 2 0
Sample Output
3 0 2


由于这只是一个单源最短路,所以用Floyd既耗时又耗空间,so就用dij做。


代码如下:

var  a:array [0..101,0..101] of longint;  b:array [0..101] of longint;  f:array [0..101] of boolean;  n,m,min:longint;procedure init;var  i,j:longint;begin  readln(n,m);  m:=m+1;  for i:=1 to n do    for j:=1 to n do      begin        read(a[i,j]);        if a[i,j]=-1 then a[i,j]:=maxlongint;      end;end;procedure main;var  i,j,t:longint;begin  for i:=1 to n do    b[i]:=a[m,i];  fillchar(f,sizeof(f),true);  f[m]:=false;  for i:=1 to n-1 do    begin      min:=maxlongint;      for j:=1 to n do        if f[j] and (b[j]
maxlongint) and (b[t]+a[t,j]

转载于:https://www.cnblogs.com/Comfortable/p/8412347.html

你可能感兴趣的文章
nginx的缓存设置提高性能
查看>>
C基础--单链表的构造
查看>>
光标定位、模糊查询
查看>>
获取Android控件ListView中被选中的某一列的值
查看>>
UVA 11374 Airport Express 机场快线 Dijistra+路径
查看>>
UIWebView 无缝切换到 WKWebView
查看>>
【python小练】0002
查看>>
【Django】不知道为什么就是想学一下 01
查看>>
C# Single Instance WinForms and Microsoft.VisualBasic.dll
查看>>
Query String模块和http小爬虫和events模块和fs模块和stream模块
查看>>
NOIP前的水题记录
查看>>
python:python之禅
查看>>
isKindOf和isMemberOf的区别
查看>>
深入浅出了解frame和bounds
查看>>
InstallShield 打包时需要注意
查看>>
我和面向对象有个约会
查看>>
转:Android Context的理解
查看>>
指定gpu
查看>>
TestNG Assert 详解
查看>>
【noip2004】 不高兴的津津 - 模拟
查看>>