城市之间

【图论】【最短路】城市问题

ⅰ亾dé卋堺 提交于 2020-01-22 21:17:49
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 解题思路 模板SPFA,但是要注意编号从0开始 #include < iostream > #include < cstdio > #include < cstring > using namespace std ; const int maxn = 0x7fffffff ; struct DT { int to , l , next ; } a [ 30000 ] ; int dis [ 10000 ] , head [ 10000 ] , pd [ 6000 ] , n , m , k , Gun = maxn , num ; int h , t , v [ 10000 ] , f [

1761城市问题

淺唱寂寞╮ 提交于 2020-01-19 05:25:51
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 这,是一道模板题 # include <iostream> # include <cstring> # include <queue> # include <cmath> # include <cstdio> using namespace std ; long long n , m , q , dis [ 1000000 ] , hd [ 100000 ] , tot ; struct node { int x , y , next , w ; } a [ 10000001 ] ; int v [ 100010 ] ; void add ( int x , int y , int z ) {

【SSL 1761】城市问题【最短路 Dijkstra】

*爱你&永不变心* 提交于 2020-01-16 03:50:15
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 分析&说明: 这道题是 最短路 问题,选用的是 Dijkstra ,其中大部分是 模板 ,开头赋初值时注意一下**-1**,还有就是所有循环都要从 0 开始,最后依次输出 c数组 就完事了。 代码: # include <iostream> # include <cstdio> # include <cstring> using namespace std ; int n , k , f [ 101 ] [ 101 ] , c [ 101 ] , p , minn ; bool u [ 101 ] ; int main ( ) { cin >> n >> k ; for ( int i = 0