当前位置: 首页 > news >正文

Dijkstra(迪杰斯特拉)算法总结

知识概览

  • Dijkstra算法适用于解决所有边权都是正数的最短路问题。
  • Dijkstra算法分为朴素的Dijkstra算法和堆优化版的Dijkstra算法。
  • 朴素的Dijkstra算法时间复杂度为O(n^2),适用于稠密图。堆优化版的Dijkstra算法时间复杂度为O(mlogn),适用于稀疏图。
  • 稠密图的边数m和n^2是一个级别的,稀疏图的边数m和点数n是一个级别的。

朴素的Dijkstra算法

例题展示

题目链接

活动 - AcWing系统讲解常用算法与数据结构,给出相应代码模板,并会布置、讲解相应的基础算法题目。icon-default.png?t=N7T8https://www.acwing.com/problem/content/description/851/

代码
#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;const int N = 510;int n, m;
int g[N][N];
int dist[N];
bool st[N];int dijkstra()
{// dist[1] = 0, dist[i] = 无穷大memset(dist, 0x3f, sizeof dist);dist[1] = 0;for (int i = 0; i < n - 1; i++){int t = -1;for (int j = 1; j <= n; j++)if (!st[j] && (t == -1 || dist[t] > dist[j]))t = j;  // t为不在st为false的距离最近的点st[t] = true;// 用t更新其它点的距离for (int j = 1; j <= n; j++)dist[j] = min(dist[j], dist[t] + g[t][j]);}if (dist[n] == 0x3f3f3f3f) return -1;return dist[n];
}int main()
{scanf("%d%d", &n, &m);memset(g, 0x3f, sizeof g);while (m--){int a, b, c;scanf("%d%d%d", &a, &b, &c);g[a][b] = min(g[a][b], c);  // 重边取最小距离}int t = dijkstra();printf("%d\n", t);return 0;
}

堆优化版的Dijkstra算法

例题展示

题目链接

活动 - AcWing系统讲解常用算法与数据结构,给出相应代码模板,并会布置、讲解相应的基础算法题目。icon-default.png?t=N7T8https://www.acwing.com/problem/content/852/

代码
#include <cstring>
#include <iostream>
#include <algorithm>
#include <queue>using namespace std;typedef pair<int, int> PII;const int N = 150010;int n, m;
int h[N], w[N], e[N], ne[N], idx;
int dist[N];
bool st[N];void add(int a, int b, int c)
{e[idx] = b, w[idx] = c, ne[idx] = h[a], h[a] = idx++;
}int dijkstra()
{memset(dist, 0x3f, sizeof dist);dist[1] = 0;priority_queue<PII, vector<PII>, greater<PII>> heap;heap.push({0, 1});while (heap.size()){auto t = heap.top();heap.pop();int ver = t.second, distance = t.first;if (st[ver]) continue;st[ver] = true;for (int i = h[ver]; i != -1; i = ne[i]){int j = e[i];if (dist[j] > distance + w[i]){dist[j] = distance + w[i];heap.push({dist[j], j});}}}if (dist[n] == 0x3f3f3f3f) return -1;return dist[n];
}int main()
{scanf("%d%d", &n, &m);memset(h, -1, sizeof h);while (m--){int a, b, c;scanf("%d%d%d", &a, &b, &c);add(a, b, c);}int t = dijkstra();printf("%d\n", t);return 0;
}

参考资料

  1. AcWing算法基础课
http://www.lryc.cn/news/268088.html

相关文章:

  • 设计模式?!
  • Pytorch项目,肺癌检测项目之三
  • 深圳鼎信|输电线路防山火视频监控预警装置:森林火灾来袭,安全不留白!
  • 【Bash/Shell】知识总结
  • 单例模式(C++实现)
  • ElasticSearch 聚合统计
  • SpringIOC之MethodBasedEvaluationContext
  • 【网络安全 | 网络协议】结合Wireshark讲解TCP三次握手
  • 钦丰科技(安徽)股份有限公司携卫生级阀门管件盛装亮相2024发酵展
  • Python模拟动态星空
  • 最新技术整理3款开源免费直播推流工具,实现实时视频推流、视频拉流,目标端可以是服务器、云平台、移动设备等(附源码)
  • shell ——数组
  • GO语言基础笔记(五):包的介绍
  • 【Unity6.0+AI】Sentis加载模型识别手写数字案例实现
  • VScode跑通Remix.js官方的contact程序开发过程
  • 讲座思考 | 周志华教授:新型机器学习神经元模型的探索
  • docker构建镜像及项目部署
  • ARM串口通信编程实验
  • MyBatis的延迟加载(懒加载)
  • 嵌入式-stm32-用PWM点亮LED实现呼吸灯
  • C语言初学7:循环
  • 力扣69. x 的平方根
  • go语言学习计划。
  • 设计模式之-3种常见的工厂模式简单工厂模式、工厂方法模式和抽象工厂模式,每一种模式的概念、使用场景和优缺点。
  • docker run --help帮助文档
  • 【Qt-Timer】
  • Java多线程技术五——单例模式与多线程-备份
  • Seem环境安装
  • java八股jvm
  • 家校互通小程序实战开发02首页搭建