Submission #400759

#TimeUsernameProblemLanguageResultExecution timeMemory
400759BERNARB01Jakarta Skyscrapers (APIO15_skyscraper)C++17
0 / 100
1 ms208 KiB
#include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vector<vector<pair<int, long long>>> g(n); for (int i = 0; i < n; i++) { int b, p; cin >> b >> p; for (int j = b + p, w = 1; j < n; j += p, w++) { g[b].emplace_back(j, w); } for (int j = b - p, w = 1; j >= 0; j -= p, w++) { g[b].emplace_back(j, w); } } const long long inf = 8e18; using T = long long; vector<T> dist(n, inf); priority_queue<pair<T, int>, vector<pair<T, int> >, greater<pair<T, int> > > s; dist[0] = 0; s.emplace(dist[0], 0); while (!s.empty()) { T exp = s.top().first; int u = s.top().second; s.pop(); if (exp != dist[u]) { continue; } for (auto [v, w] : g[u]) { if (dist[u] + w < dist[v]) { dist[v] = dist[u] + w; s.emplace(dist[v], v); } } } cout << (dist[1] >= inf ? -1 : dist[1]) << '\n'; return 0; }
#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...