Submission #1049567

#TimeUsernameProblemLanguageResultExecution timeMemory
1049567avighnaRelay Marathon (NOI20_relaymarathon)C++17
25 / 100
822 ms211264 KiB
#include <bits/stdc++.h> typedef long long ll; const ll inf = 1e15; struct Edge { ll u, v, w; }; int main() { std::ios_base::sync_with_stdio(false); std::cin.tie(nullptr); ll n, m, k; std::cin >> n >> m >> k; std::vector<std::vector<std::pair<ll, ll>>> adj(n + 1); std::vector<Edge> edges; for (ll i = 0, u, v, w; i < m; ++i) { std::cin >> u >> v >> w; adj[u].push_back({v, w}); adj[v].push_back({u, w}); edges.push_back({u, v, w}); } std::vector<ll> A(k); std::priority_queue<std::pair<ll, std::pair<ll, ll>>> pq; std::vector<bool> special(n + 1); for (auto &i : A) { std::cin >> i; special[i] = true; } auto get_best = [&]() { std::vector<ll> d(n + 1, inf); for (auto &i : A) { special[i] = true; pq.push({0, {i, i}}); d[i] = 0; } std::vector<std::pair<ll, ll>> closest_special(n + 1); std::vector<bool> vis(n + 1); while (!pq.empty()) { ll node = pq.top().second.first, source = pq.top().second.second, dist = -pq.top().first; pq.pop(); if (vis[node]) { continue; } vis[node] = true; closest_special[node] = {source, dist}; for (auto &[i, i_d] : adj[node]) { if (dist + i_d < d[i]) { d[i] = dist + i_d; pq.push({-d[i], {i, source}}); } } } std::pair<ll, std::pair<ll, ll>> ans = {inf, {0, 0}}; for (auto &[u, v, w] : edges) { if (special[u] and special[v]) { ans = std::min(ans, {w, {u, v}}); } } for (auto &[u, v, w] : edges) { if (closest_special[u].first != closest_special[v].first) { ans = std::min( ans, {closest_special[u].second + w + closest_special[v].second, {closest_special[u].first, closest_special[v].first}}); } } return ans; }; auto best = get_best(); auto &[u, v] = best.second; special[u] = special[v] = false; A.erase(std::remove(A.begin(), A.end(), u), A.end()); A.erase(std::remove(A.begin(), A.end(), v), A.end()); auto second_best = get_best(); ll ans = best.first + second_best.first; ll f = inf, s = inf; for (auto &[x, w] : adj[u]) { if (x != v and special[x]) { f = std::min(f, w); } } for (auto &[y, w] : adj[v]) { if (y != u and special[y]) { s = std::min(s, w); } } if (f != inf and s != inf) { ans = std::min(ans, best.first + f + s); } std::cout << ans << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...