博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU1874 畅通工程续
阅读量:5732 次
发布时间:2019-06-18

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

问题链接:

问题描述参见上文。

问题分析:这是一个经典的单源最短路径问题,使用Dijkstra。

程序说明:图的表示主要有三种形式,一是邻接表,二是邻接矩阵,三是边列表。邻接矩阵对于结点多和边少的情况都不理想。程序中用邻接表存储图,即g[],是一种动态的存储。数组dist[]中存储单源(结点s)到各个结点的最短距离。优先队列q按照边的权值从小到大排队,便于计算最短路径。

这个问题,由于结点数量比较少,图还可以用邻接矩阵表示。那样的话,代码则是另外一种写法。

需要注意的一点是,有可能不存在路径,程序中93行增加条件“dist[t]==INT_MAX2”进行判断。

AC的程序如下:

/* HDU1874 畅通工程续 */#include 
#include
#include
#include
using namespace std;const int INT_MAX2 = ((unsigned int)(-1) >> 1);const int MAXN = 200;// 边struct _edge { int v, cost; _edge(int v2, int c){v=v2; cost=c;}};// 结点struct _node { int u, cost; _node(){} _node(int u2, int l){u=u2; cost=l;} bool operator<(const _node n) const { return cost > n.cost; }};vector<_edge> g[MAXN+1];int dist[MAXN+1];bool visited[MAXN+1];void dijkstra(int start, int n){ priority_queue<_node> q; for(int i=0; i<=n; i++) { dist[i] = INT_MAX2; visited[i] = false; } dist[start] = 0; q.push(_node(start, 0)); _node f; while(!q.empty()) { f = q.top(); q.pop(); int u = f.u; if(!visited[u]) { visited[u] = true; int len = g[u].size(); for(int i=0; i
nextdist) { dist[v2] = nextdist; q.push(_node(v2, dist[v2])); } } } }}int main(){ int n, m, src, dest, cost2, s, t; // 输入数据,构建图 while(scanf("%d%d",&n,&m) != EOF && (n + m)) { for(int i=1; i<=m; i++) { scanf("%d%d%d", &src, &dest, &cost2); g[src].push_back(_edge(dest, cost2)); g[dest].push_back(_edge(src, cost2)); } scanf("%d%d", &s, &t); // Dijkstra算法 dijkstra(s, n); // 输出结果 printf("%d\n", (dist[t] == INT_MAX2) ? -1 : dist[t]); // 释放存储 for(int i=0; i<=n; i++) g[i].clear(); } return 0;}

转载于:https://www.cnblogs.com/tigerisland/p/7564068.html

你可能感兴趣的文章
在DJango中获取访问者的IP地址
查看>>
base64
查看>>
大型网站架构演化历程
查看>>
豆瓣网CTO洪强宁讲述网站架构变迁
查看>>
js hasOwnProperty vs hasProperty的区别
查看>>
fix元素水平居中
查看>>
监听Textarea、input输入变化
查看>>
Spring AOP是什么?你都拿它做什么?
查看>>
Mongodb无法启动:The default storage engine
查看>>
Venture and Chance
查看>>
域名注册详解:WHOIS信息的历史及其发展(二)
查看>>
Sftp工具类
查看>>
同步系统设置时间格式
查看>>
javascript 和 native obj-c 交互数据的开源工具
查看>>
nginx虚拟主机配置
查看>>
spring事务处理
查看>>
ubuntu 14.10安装android studio中遇到的问题
查看>>
uva 11462
查看>>
Delphi读写UTF-8、Unicode格式文本文件
查看>>
Indy 10 文件传输
查看>>