Dijkstra 模板 最短路

转载请注明出处:http://blog.csdn.net/u012860063?viewmode=contents

------------------------------------------------------------------------------------------------------------------------------------------------------
欢迎光临天资小屋http://user.qzone.qq.com/593830943/main

------------------------------------------------------------------------------------------------------------------------------------------------------

模板奉上:(HDU2544)

#include <cstdio>
#include <iostream>
#include <algorithm>
#define MAXN 117
#define INF 0x3fffffff
using namespace std;
int mat[MAXN][MAXN];
int n,m;//n为结点数,m为道路数
int dijkstra (int s,int f)
{
	//s为起点, f:为终点
	int dis[MAXN];//记录到随意点的最短距离
	int mark[MAXN];//记录被选中的结点
	int i, j, k;
    for(i = 1; i <= n; i++)
    {
		mark[i] = 0;//初始化全部结点。每一个结点都没有被选中
        dis[i] = INF;
		//dis[i] = mat[s][i];
    }
    mark[s] = 1;//start结点被选中
    dis[s] = 0;//将start结点的的距离设置为0
    int min;//设置最短的距离。
    for(i = 1; i <= n; i++)
    {
		k = 1;//赋初值非常重要
        min = INF;
        for(j = 1; j <= n;j++)
        {
            if(!mark[j] && dis[j] < min)//未被选中的结点中,距离最短的被选中
            {
                min = dis[j] ;
                k = j;
            }
        }
        mark[k] = 1;//标记为被选中
        for(j = 1; j <= n; j++)
        {
            if(!mark[j] && dis[j]>dis[k] + mat[k][j])//改动剩余结点的最短距离
            {
                dis[j] = dis[k] + mat[k][j];
            }
        }
    }
    return dis[f];
} 

void init()
{
	for(int i = 0; i <= n; i++)
	{
		for(int j = 0; j <= n; j++)
		{
			if(i == j)
				mat[i][j] = 0;
			else
				mat[i][j] = INF;
		}
	}
}
int main()
{
	int i,j;
	int a,b,dis;
	while(scanf("%d %d",&n,&m))
	{
		if(n == 0 || m == 0)
			break;
		init();
		for(i = 1; i <= m; i++)
		{
			scanf("%d %d %d",&a,&b,&dis);
			if(dis < mat[a][b] || dis < mat[b][a])
				mat[a][b] = mat[b][a] = dis;
		}
		int ans = dijkstra(1,n);
		printf("%d\n",ans);
	}
	return 0;
}
时间: 2024-10-18 16:58:09

Dijkstra 模板 最短路的相关文章

acwing 850. Dijkstra求最短路 II 模板

地址 https://www.acwing.com/problem/content/description/852/ 给定一个n个点m条边的有向图,图中可能存在重边和自环,所有边权均为非负值. 请你求出1号点到n号点的最短距离,如果无法从1号点走到n号点,则输出-1. 输入格式 第一行包含整数n和m. 接下来m行每行包含三个整数x,y,z,表示存在一条从点x到点y的有向边,边长为z. 输出格式 输出一个整数,表示1号点到n号点的最短距离. 如果路径不存在,则输出-1. 数据范围 1≤n,m≤10

UVA - 11374 Airport Express (Dijkstra模板+枚举)

Description Problem D: Airport Express In a small city called Iokh, a train service, Airport-Express, takes residents to the airport more quickly than other transports. There are two types of trains in Airport-Express, the Economy-Xpress and the Comm

eoj1818 dijkstra求最短路及其条数

求出有n(1 < n <= 100)个结点有向图中,结点1到结点n的最短路径,以及最短路径的条数. Input 第一行有2个整数n和m( 0 < m < 3000),接下来m行每行有三个整数u,v,w结点u到v之间有一条权为w的边(w<100000). Output 输出只有一行,为结点1到结点n之间的最短路径及其条数(用空格隔开),如果1到n之间不存在路径,输出 -1 0. Sample Input 3 3 1 2 10 2 3 15 1 3 25 Sample Outpu

Dijkstra模板题图论书p133

#include <cstdio> #include <cstring> #include <cmath> #include <algorithm> #include <climits> #include <string> #include <iostream> #include <map> #include <cstdlib> #include <list> #include <

POJ 1502 MPI Maelstrom (Dijkstra 模板题)

MPI Maelstrom Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 5877   Accepted: 3654 Description BIT has recently taken delivery of their new supercomputer, a 32 processor Apollo Odyssey distributed shared memory machine with a hierarchic

HDU 2544最短路dijkstra模板题

最短路 Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 33657    Accepted Submission(s): 14617 Problem Description 在每年的校赛里,所有进入决赛的同学都会获得一件很漂亮的t-shirt.但是每当我们的工作人员把上百件的衣服从商店运回到赛场的时候,却是非常累的!所以现在他们想要寻找

hdu 2544 最短路 dijkstra模板

最短路 Time Limit: 5000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 38804    Accepted Submission(s): 16925 Problem Description 在每年的校赛里,所有进入决赛的同学都会获得一件很漂亮的t-shirt.但是每当我们的工作人员把上百件的衣服从商店运回到赛场的时候,却是非常累的!所以现在他们想要寻找最

HDU1584-A strange lift-最短路(Dijkstra模板题)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1548 这个题目很容易让人用广搜...无语... #include<iostream> #include<string> #include<cstdio> #include<cstring> #include<map> #include<queue> #include<cmath> #include<stack> #

最短路Dijkstra模板

传送门:单源最短路 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 6 const int MAXN = 10000+1; 7 const int MAXM = 500000+1; 8 const int INT_MAX = 2147483647; 9 10 struct EDGE{ 11 int next,to,dis; 12 }Edge[MAX