# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
566592 | ac2hu | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 789 ms | 6612 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#ifdef DEBUG
#include "../templates/debug.h"
#else
#define deb(x...)
#endif
using namespace std;
#define int long long
signed main() {
iostream::sync_with_stdio(false);
cin.tie(nullptr);cout.tie(nullptr);
int n, m;cin >> n >> m;
n++;
vector<pair<int,int>> doge(m);
for(auto &[x,y] : doge)cin >> x >> y;
vector<vector<int>> val(n);
for(auto [x, y] : doge){
val[x].push_back(y);
}
vector<int> dist(n, 1e18);
dist[doge[0].first] = 0;
priority_queue<pair<int,int>> pq;
pq.push({-dist[doge[0].first], doge[0].first});
while(!pq.empty()){
auto [dd, x] = pq.top();
pq.pop();
dd = -dd;
if(dist[x] < dd)continue;
for(int e : val[x]){
int c = 0;
for(int j = x;j<n;j+=e){
if(dist[j] > dist[x] + c){
dist[j] = dist[x] + c;
pq.push({-dist[j], j});
}
c++;
}
c = 0;
for(int j = x;j>=0;j-=e){
if(dist[j] > dist[x] + c){
dist[j] = dist[x] + c;
pq.push({-dist[j], j});
}
c++;
}
}
}
int r = doge[1].first;
if(dist[r] > 1e17)
cout << -1 << "\n";
else
cout << dist[r] << "\n";
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |