acwing算法提高之图论--单源最短路的综合应用

目录

  • 1 介绍
  • 2 训练

1 介绍

本专题用来介绍使用最短路算法(spfa或dijkstra)与其它算法(dfs、二分、拓扑排序、动态规划等等)结合起来解题。

2 训练

题目1:1135新年好

C++代码如下,

//版本1,使用vector来存储图,会有超时风险
#include <iostream>
#include <cstring>
#include <algorithm>
#include <queue>
#include <vector>using namespace std;const int N = 50010;
int n, m;
int dist[6][N];
bool st[N];
vector<vector<pair<int, int>>> g; //使用vector可能有超时分险
int source[6];void spfa(int start, int dist[]) {memset(dist, 0x3f, N * 4);memset(st, 0, sizeof st);dist[start] = 0;queue<int> q;q.push(start);st[start] = true;while (!q.empty()) {auto t = q.front();q.pop();st[t] = false;for (auto [b, w] : g[t]) {if (dist[b] > dist[t] + w) {dist[b] = dist[t] + w;if (!st[b]) {q.push(b);st[b] = true;}}}}return;
}int dfs(int u, int start, int distance) {if (u > 5) return distance;int res = 0x3f3f3f3f;for (int i = 1; i <= 5; ++i) {if (!st[i]) {int b = source[i];st[i] = true;res = min(res, dfs(u + 1, i, distance + dist[start][b]));st[i] = false; }}return res;
}int main() {cin >> n >> m;g.resize(n + 10);source[0] = 1;for (int i = 1; i <= 5; ++i) cin >> source[i];for (int i = 0; i < m; ++i) {int a, b, c;cin >> a >> b >> c;g[a].emplace_back(b, c);g[b].emplace_back(a, c);}for (int i = 0; i < 6; ++i) spfa(source[i], dist[i]);memset(st, 0, sizeof st);int res = dfs(1, 0, 0);cout << res << endl;return 0;   
}
//版本2,使用h,e,ne,w数组来存储图
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <queue>using namespace std;typedef pair<int, int> PII;const int N = 50010, M = 200010, INF = 0x3f3f3f3f;int n, m;
int h[N], e[M], w[M], ne[M], idx;
int q[N], dist[6][N];
int source[6];
bool st[N];void add(int a, int b, int c) {e[idx] = b, w[idx] = c, ne[idx] = h[a], h[a] = idx++;
}void dijkstra(int start, int dist[]) {memset(dist, 0x3f, N * 4);dist[start] = 0;memset(st, 0, sizeof st);priority_queue<PII, vector<PII>, greater<PII>> heap;heap.push({0, start});while (heap.size()) {auto t = heap.top();heap.pop();int ver = t.second;if (st[ver]) continue;st[ver] = true;for (int i = h[ver]; ~i; i = ne[i]) {int j = e[i];if (dist[j] > dist[ver] + w[i]) {dist[j] = dist[ver] + w[i];heap.push({dist[j], j});}}}
}int dfs(int u, int start, int distance) {if (u > 5) return distance;int res = INF;for (int i = 1; i <= 5; ++i) {if (!st[i]) {int next = source[i];st[i] = true;res = min(res, dfs(u + 1, i, distance + dist[start][next]));st[i] = false; }}return res;
}int main() {scanf("%d%d", &n, &m);source[0] = 1;for (int i = 1; i <= 5; ++i) scanf("%d", &source[i]);memset(h, -1, sizeof h);while (m--) {int a, b, c;scanf("%d%d%d", &a, &b, &c);add(a, b, c), add(b, a, c);}for (int i = 0; i < 6; ++i) dijkstra(source[i], dist[i]);memset(st, 0, sizeof st);printf("%d\n", dfs(1, 0, 0));return 0;
}

题目2:340通信线路

C++代码如下,

#include <iostream>
#include <cstring>
#include <algorithm>
#include <deque>using namespace std;const int N = 1010, M = 20010;
int n, m, k;
int h[N], e[M], w[M], ne[M], idx;
int dist[N];
deque<int> q;
bool st[N];void add(int a, int b, int c) {e[idx] = b, w[idx] = c, ne[idx] = h[a], h[a] = idx++;
}bool check(int bound) {memset(dist, 0x3f, sizeof dist);memset(st, 0, sizeof st);q.push_back(1);dist[1] = 0;while (q.size()) {int t = q.front();q.pop_front();if (st[t]) continue;st[t] = true;for (int i = h[t]; ~i; i = ne[i]) {int j = e[i], x = w[i] > bound;if (dist[j] > dist[t] + x) {dist[j] = dist[t] + x;if (!x) q.push_front(j);else q.push_back(j);}}}return dist[n] <= k;
}int main() {cin >> n >> m >> k;memset(h, -1, sizeof h);while (m--) {int a, b, c;cin >> a >> b >> c;add(a, b, c), add(b, a, c);}int l = 0, r = 1e6 + 1;while (l < r) {int mid = l + r >> 1;if (check(mid)) r = mid;else l = mid + 1;}if (r == 1e6 + 1) cout << -1 << endl;else cout << r << endl;return 0;
}

题目3:342道路与航线

C++代码如下,

#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>#define x first
#define y secondusing namespace std;typedef pair<int, int> PII;const int N = 25010, M = 150010, INF = 0x3f3f3f3f;
int n, mr, mp, S;
int id[N];
int h[N], e[M], w[M], ne[M], idx;
int dist[N], din[N];
vector<int> block[N];
int bcnt;
bool st[N];
queue<int> q;void add(int a, int b, int c) {e[idx] = b, w[idx] = c, ne[idx] = h[a], h[a] = idx++;
}void dfs(int u, int bid) {id[u] = bid, block[bid].push_back(u);for (int i = h[u]; ~i; i = ne[i]) {int j = e[i];if (!id[j]) {dfs(j, bid);}}
}void dijkstra(int bid) {priority_queue<PII, vector<PII>, greater<PII>> heap;for (auto u : block[bid]) {heap.push({dist[u], u});}while (heap.size()) {auto t = heap.top();heap.pop();int ver = t.y, distance = t.x;if (st[ver]) continue;st[ver] = true;for (int i = h[ver]; ~i; i = ne[i]) {int j = e[i];if (id[j] != id[ver] && --din[id[j]] == 0) q.push(id[j]);if (dist[j] > dist[ver] + w[i]) {dist[j] = dist[ver] + w[i];if (id[j] == id[ver]) heap.push({dist[j], j});}}}
}void topsort() {memset(dist, 0x3f, sizeof dist);dist[S] = 0;for (int i = 1; i <= bcnt; ++i) {if (!din[i]) {q.push(i);}}while (q.size()) {int t = q.front();q.pop();dijkstra(t);}}int main() {cin >> n >> mr >> mp >> S;memset(h, -1, sizeof h);while (mr--) {int a, b, c;cin >> a >> b >> c;add(a, b, c), add(b, a, c);}for (int i = 1; i <= n; ++i) {if (!id[i]) {bcnt++;dfs(i, bcnt);}}while (mp--) {int a, b, c;cin >> a >> b >> c;din[id[b]]++;add(a, b, c);}topsort();for (int i = 1; i <= n; ++i) {if (dist[i] > INF / 2) cout << "NO PATH" << endl;else cout << dist[i] << endl;}return 0;
}

题目4:341最优贸易

C++代码如下,

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>using namespace std;const int N = 100010, M = 2000010;
int n, m;
int w[N];
int hs[N], ht[N], e[M], ne[M], idx;
int dmin[N], dmax[N];
int q[N];
bool st[N];void add(int h[], int a, int b) {e[idx] = b, ne[idx] = h[a], h[a] = idx++;
}void spfa(int h[], int dist[], int type) {int hh = 0, tt = 1;if (type == 0) {memset(dist, 0x3f, sizeof dmin);dist[1] = w[1];q[0] = 1;} else {memset(dist, -0x3f, sizeof dmax);dist[n] = w[n];q[0] = n;}while (hh != tt) {int t = q[hh++];if (hh == N) hh = 0;st[t] = false;for (int i = h[t]; ~i; i = ne[i]) {int j = e[i];if (type == 0 && dist[j] > min(dist[t], w[j]) || type == 1 && dist[j] < max(dist[t], w[j])) {if (type == 0) dist[j] = min(dist[t], w[j]);else dist[j] = max(dist[t], w[j]);if (!st[j]) {q[tt++] = j;if (tt == N) tt = 0;st[j] = true;}}}}
}int main() {scanf("%d%d", &n, &m);for (int i = 1; i <= n; ++i) scanf("%d", &w[i]);memset(hs, -1, sizeof hs);memset(ht, -1, sizeof ht);while (m--) {int a, b, c;scanf("%d%d%d", &a, &b, &c);add(hs, a, b), add(ht, b, a);if (c == 2) add(hs, b, a), add(ht, a, b);}spfa(hs, dmin, 0);spfa(ht, dmax, 1);int res = 0;for (int i = 1; i <= n; ++i) res = max(res, dmax[i] - dmin[i]);printf("%d\n", res);return 0;
}

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/787202.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

KNN算法 | K邻近:基础概念

目录 一. KNN算法原理二. KNN算法三要素1. K值的选择2. 距离2.1 欧氏距离2.2 曼哈顿距离(城市街区距离)2.3 切比雪夫距离(棋盘距离)2.4 闵可夫斯基距离2.5 标准化欧式距离2.6 余弦距离欧氏距离与余弦距离对比 3. 决策规则3.1 KNN分类任务多数表决法加权多数表决法 3.2 KNN回归任…

26番外1 对PE启动U盘的思考:制作启动盘,真的不用格式化!!!

番外1 对PE启动U盘的思考 我们在使用官方软件工具(如微PE工具箱)制作任何一个启动U盘的时候,他们总会提示我们:U盘需要格式化!!请备份好自己的数据!! 我一直在思考:为什么一定要格式化呢?需要格式化吗? 为了解决这个问题,我开始思考启动盘的本质. 启动盘的本质是什么?它怎么…

Android 自定义View 测量控件宽高、自定义viewgroup测量

1、View生命周期以及View层级 1.1、View生命周期 View的主要生命周期如下所示&#xff0c; 包括创建、测量&#xff08;onMeasure&#xff09;、布局&#xff08;onLayout&#xff09;、绘制&#xff08;onDraw&#xff09;以及销毁等流程。 自定义View主要涉及到onMeasure、…

风险与收益

风险与收益 影响资产需求的主要因素财富总量预期收益率资产的流动性影响流动性的主要因素 风险 如何降低风险系统风险和非系统风险机会集合与有效集合资产组合理论 影响资产需求的主要因素 影响资产需求的主要因素包括&#xff1a;财富总量、预期收益率、资产的流动性和风险。…

bashplotlib,一个有趣的 Python 库!

更多资料获取 &#x1f4da; 个人网站&#xff1a;ipengtao.com 大家好&#xff0c;今天为大家分享一个有趣的 Python 库 - bashplotlib。 Github地址&#xff1a;https://github.com/glamp/bashplotlib 在 Python 中&#xff0c;绘制图形通常需要使用专门的绘图库&#xff0…

展锐平台camera添加底层水印

展锐平台camera添加水印&#xff0c;从底层用编码覆盖图像数组&#xff0c;保证上层获取图像水印的一致性 时间水印diff --git a/vendor/sprd/modules/libcamera/hal3_2v6/SprdCamera3HWI.cpp b/vendor/sprd/modules/libcamera/hal3_2v6/SprdCamera3HWI.cpp index f2b704f9d6..…

【Redis】redis集群模式

概述 Redis集群&#xff0c;即Redis Cluster&#xff0c;是Redis 3.0开始引入的分布式存储方案。实际使用中集群一般由多个节点(Node)组成&#xff0c;Redis的数据分布在这些节点中。集群中的节点分为主节点和从节点&#xff1a;只有主节点负责读写请求和集群信息的维护&#…

整数删除,蓝桥杯训练题

题目描述: 给定一个长度为 N 的整数数列&#xff1a;A1,A2,…,AN。 你要重复以下操作 K 次&#xff1a; 每次选择数列中最小的整数&#xff08;如果最小值不止一个&#xff0c;选择最靠前的&#xff09;&#xff0c;将其删除&#xff0c;并把与它相邻的整数加上被删除的数值。 …

【4月2日更新】低至50元/年 京东云 阿里云 腾讯云服务器价格对比表 幻兽帕鲁 雾锁王国 我的世界 饥荒 通用

更新日期&#xff1a;4月2日 本文纯原创&#xff0c;侵权必究 【云服务器推荐】价格对比&#xff01;阿里云 京东云 腾讯云 选购指南视频截图 《最新对比表》已更新在文章头部—腾讯云文档&#xff0c;文章具有时效性&#xff0c;请以腾讯文档为准&#xff01; 【腾讯文档实…

Anaconda中利用conda创建、激活、删除、添加新环境

一、利用conda创建新环境 学多了&#xff0c;发现学习一些命令就跟学英语语法一样&#xff0c;比如利用conda 创建新环境&#xff0c;语法如下&#xff1a; conda create -n 新环境的名字 -n为--name的简写。利用我需要创建一个新的环境&#xff0c;取名为pycaret&#xff0c…

基于springboot的房屋租赁系统平台

功能描述 流程&#xff1a;房主登陆系统录入房屋信息》发布租赁信息&#xff08;选择房屋&#xff09;》租客登陆系统浏览租赁信息》和房主联系、看房&#xff08;根据租赁信息单的电话线下沟通&#xff09;》房主发起签约&#xff08;生成邀请码&#xff09;》租客登陆系统根…

【洛谷 P8700】[蓝桥杯 2019 国 B] 解谜游戏 题解(字符串+映射+周期性)

[蓝桥杯 2019 国 B] 解谜游戏 题目背景 题目描述 小明正在玩一款解谜游戏。谜题由 24 24 24 根塑料棒组成&#xff0c;其中黄色塑料棒 4 4 4 根&#xff0c;红色 8 8 8 根&#xff0c;绿色 12 12 12 根 (后面用 Y 表示黄色、R 表示红色、G 表示绿色)。初始时这些塑料棒排…

QML嵌套页面的实现学习记录

StackView是一个QML组件&#xff0c;用于管理和显示多个页面。它提供了向前和向后导航的功能&#xff0c;可以在堆栈中推入新页面&#xff0c;并在不需要时将页面弹出。 ApplicationWindow {id:rootvisible: truewidth: 340height: 480title: qsTr("Stack")// 抽屉:…

總結狹義相對論

事實上,狹義相對論統一了電磁學和力學對於速度的變換關係 參考: 陈曦<<力学讲义>> http://ithatron.phys.tsinghua.edu.cn/downloads/mechanics.pdf 陈曦<<電磁学讲义>> http://ithatron.phys.tsinghua.edu.cn/downloads/electricty_and_magnetis…

激光雷达的量产车方案

文章目录 现在的量产方案共同点与差异技术方案应用场景未来发展趋势 现在的量产方案 在量产车领域&#xff0c;半固态激光雷达技术的发展和应用是实现高级自动驾驶功能的关键技术之一。半固态激光雷达&#xff0c;与传统的固态激光雷达相比&#xff0c;其最大特点是在内部采用…

利用免费的开源AI引擎:打造企业级文档合规性智能审查平台

合同、法律文件、文档管理是企业和机构运营中不可或缺的一部分。随着文档数量的不断增加&#xff0c;传统的人工文档审查方式已经无法满足高效率和高质量的要求。文档合规性智能审查平台应运而生&#xff0c;它利用图像识别、自然语言处理等前沿技术&#xff0c;为文档审查工作…

L2-3 图着色问题

图着色问题是一个著名的NP完全问题。给定无向图G(V,E)&#xff0c;问可否用K种颜色为V中的每一个顶点分配一种颜色&#xff0c;使得不会有两个相邻顶点具有同一种颜色&#xff1f; 但本题并不是要你解决这个着色问题&#xff0c;而是对给定的一种颜色分配&#xff0c;请你判断这…

WordPress外贸建站Astra免费版教程指南(2024)

在WordPress的外贸建站主题中&#xff0c;有许多备受欢迎的主题&#xff0c;如Avada、Astra、Hello、Kadence等最佳WordPress外贸主题&#xff0c;它们都能满足建站需求并在市场上广受认可。然而&#xff0c;今天我要介绍的是一个不断颠覆建站人员思维的黑马——Astra主题。 原…

YoloV8改进策略:BackBone改进|GCNet(独家原创)|附结构图

摘要 本文使用GCNet注意力改进YoloV8,在YoloV8的主干中加入GCNet实现涨点。改进方法简单易用&#xff0c;欢迎大家使用&#xff01; 论文:《GCNet: Non-local Networks Meet Squeeze-Excitation Networks and Beyond》 非局部网络&#xff08;NLNet&#xff09;通过为每个查…

速盾:网络直播cdn不延迟吗?

随着互联网的发展&#xff0c;网络直播已经成为了人们生活中重要的一部分。无论是大型的体育赛事、音乐演唱会还是个人的游戏直播&#xff0c;都能通过网络直播平台实时传输给观众。而要实现网络直播的顺畅播放&#xff0c;CDN&#xff08;内容分发网络&#xff09;技术发挥着重…