[AcWing 1127] 香甜的黄油
2022/8/9 23:22:46
本文主要是介绍[AcWing 1127] 香甜的黄油,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
选一个起点,到其他点的最短距离之和最小
堆优化 dijkstra (太慢)
复杂度 \(O(n \cdot log(m) \cdot p) = 500 \times log(1450) \times 800 = 1.2 \times 10^7\)
点击查看代码
#include<bits/stdc++.h> using namespace std; typedef long long LL; typedef pair<int,int> PII; const int N = 1e6 + 10; const int INF = 0x3f3f3f3f; int n, m, p; int id[N]; int h[N], e[N], ne[N], w[N], idx; int d[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 ++; } void dijkstra(int sp) { memset(d, 0x3f, sizeof d); memset(st, false, sizeof st); priority_queue<PII, vector<PII>, greater<PII>> heap; heap.push({0, sp}); d[sp] = 0; while (heap.size()) { auto t = heap.top(); heap.pop(); auto v = t.second; if (st[v]) continue; st[v] = true; for (int i = h[v]; i != -1; i = ne[i]) { int j = e[i]; if (d[j] > d[v] + w[i]) { d[j] = d[v] + w[i]; heap.push({d[j], j}); } } } } void solve() { cin >> n >> p >> m; memset(h, -1, sizeof h); for (int i = 1; i <= n; i ++) cin >> id[i]; for (int i = 0; i < m; i ++) { int a, b, c; cin >> a >> b >> c; add(a, b, c); add(b, a, c); } int res = INF; for (int i = 1; i <= p; i ++) { dijkstra(i); int sum = 0; for (int j = 1; j <= n; j ++) { int dist = d[id[j]]; if (dist == INF) { sum = INF; break; } sum += dist; } res = min(res, sum); } cout << res << endl; } signed main() { ios::sync_with_stdio(false); cin.tie(nullptr); solve(); return 0; }
- 堆优化 \(dijsktra\) 翻车,\(SPFA\) 活了过来
这篇关于[AcWing 1127] 香甜的黄油的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-11国产医疗级心电ECG采集处理模块
- 2025-01-10Rakuten 乐天积分系统从 Cassandra 到 TiDB 的选型与实战
- 2025-01-09CMS内容管理系统是什么?如何选择适合你的平台?
- 2025-01-08CCPM如何缩短项目周期并降低风险?
- 2025-01-08Omnivore 替代品 Readeck 安装与使用教程
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南