Submission #953637

#TimeUsernameProblemLanguageResultExecution timeMemory
953637UnforgettableplJakarta Skyscrapers (APIO15_skyscraper)C++17
57 / 100
1055 ms101760 KiB
#include <bits/stdc++.h> using namespace std; #define int long long priority_queue<pair<int,pair<int,int>>> q; vector<int> buildings[30001]; int power[30001]; bool visited[30000][174]; const int INF = 1e15; int n; const int threshold = 173; inline void adddoge(int x,int building,int dist){ if(power[x]>threshold){ int minimum = building - power[x] * (building / power[x]); for (int i = minimum; i < n; i += power[x]) if (!visited[i][0]) { q.emplace(dist - (abs(building - i) / power[x]), make_pair(i,0)); } } else { if(!visited[building][power[x]])q.emplace(dist,make_pair(building,power[x])); } } int32_t main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); int m; cin >> n >> m; int base,tar; cin>>base>>power[0]>>tar>>power[1]; buildings[base].emplace_back(0); buildings[tar].emplace_back(1); for(int i=2;i<m;i++){ int b;cin>>b>>power[i]; buildings[b].emplace_back(i); } q.emplace(0, make_pair(base,0)); while(!q.empty()){ auto curr = q.top();q.pop(); if(visited[curr.second.first][curr.second.second])continue; visited[curr.second.first][curr.second.second]=true; if(curr.second.first==tar){ cout << -curr.first << '\n'; return 0; } if(curr.second.second==0)for(int&i:buildings[curr.second.first])adddoge(i,curr.second.first,curr.first); else { if(!visited[curr.second.first][0])q.emplace(curr.first, make_pair(curr.second.first,0)); if(curr.second.first+curr.second.second<n and !visited[curr.second.first+curr.second.second][curr.second.second])q.emplace(curr.first-1,make_pair(curr.second.first+curr.second.second,curr.second.second)); if(curr.second.first-curr.second.second>=0 and !visited[curr.second.first-curr.second.second][curr.second.second])q.emplace(curr.first-1,make_pair(curr.second.first-curr.second.second,curr.second.second)); } } cout << "-1\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...
#Verdict Execution timeMemoryGrader output
Fetching results...