# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
389656 | milleniumEeee | Jakarta Skyscrapers (APIO15_skyscraper) | C++17 | 1087 ms | 8104 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr first
#define sc second
#define pii pair<int, int>
#define pb push_back
#define szof(s) (int)s.size()
#define all(s) s.begin(), s.end()
#define fastInp ios_base::sync_with_stdio(0); cin.tie(0);
//#define int long long
using namespace std;
const int MAXN = (int)2e5 + 5;
const int INF = 1e18;
int pos[MAXN], p[MAXN];
int n, m;
int dist[MAXN];
vector <int> edge[MAXN];
signed main() {
fastInp;
cin >> n >> m;
for (int i = 0; i < m; i++) {
cin >> pos[i] >> p[i];
edge[pos[i]].pb(p[i]);
}
memset(dist, -1, sizeof(dist));
dist[pos[0]] = 0;
priority_queue <pii> pq;
pq.push({0, pos[0]});
while (!pq.empty()) {
int v = pq.top().sc;
int cost = -pq.top().fr;
pq.pop();
if (cost > dist[v]) {
continue;
}
for (auto x : edge[v]) {
if (x == 0) {
continue;
}
for (int to = v % x; to < n; to += x) {
int c = abs(v - to) / x;
if (dist[to] == -1 || dist[to] > dist[v] + c) {
dist[to] = dist[v] + c;
pq.push({-dist[to], to});
}
}
}
}
cout << dist[pos[1]];
}
컴파일 시 표준 에러 (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... |