Submission #769707

#TimeUsernameProblemLanguageResultExecution timeMemory
769707PlurmCyberland (APIO23_cyberland)C++17
0 / 100
36 ms8320 KiB
#include "cyberland.h" #include <bits/stdc++.h> using namespace std; vector<pair<int, int>> g[100005]; bool reach[100005]; void dfsreach(int u) { if (reach[u]) return; reach[u] = true; for (auto v : g[u]) { dfsreach(v.first); } } long long dist[100005]; double solve(int N, int M, int K, int H, std::vector<int> x, std::vector<int> y, std::vector<int> c, std::vector<int> arr) { for (int i = 0; i < M; i++) { g[x[i]].push_back({y[i], c[i]}); g[y[i]].push_back({x[i], c[i]}); } dfsreach(0); priority_queue<pair<int, int>> pq; for (int i = 0; i < N; i++) { dist[i] = 2e18; if (arr[i] == 0 && reach[i]) { pq.push({0, i}); dist[i] = 0; } } pq.push({0, 0}); dist[0] = 0; while (!pq.empty()) { auto cur = pq.top(); pq.pop(); for (auto nxt : g[cur.second]) { if (dist[nxt.first] > -cur.first + nxt.second) { dist[nxt.first] = -cur.first + nxt.second; pq.push({-dist[nxt.first], nxt.first}); } } } for (int i = 0; i < N; i++) { g[i].clear(); reach[i] = false; } if (dist[H] > 1e18) return -1; else return dist[H]; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...