# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
248375 | sahil_k | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 133 ms | 262148 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <set>
using namespace std;
int main () {
int n, m;
cin >> n >> m;
int adj[n][n];
for (int i=0; i<n; i++) {
for (int j=0; j<n; j++) {
adj[i][j] = 1e9;
}
}
int bi, pi;
int start, end;
for (int i=0; i<m; i++) {
cin >> bi >> pi;
if (i == 0) start = bi;
if (i == 1) end = bi;
for (int j=1; j<n; j++) {
if (bi-j*pi >= 0) adj[bi][bi-j*pi] = min(adj[bi][bi-j*pi], j);
if (bi+j*pi < n) adj[bi][bi+j*pi] = min(adj[bi][bi+j*pi], j);
}
}
set< pair<int, int> > ord;
int dist[n];
bool vis[n];
for (int i=0; i<n; i++) {
dist[i] = 1e9;
vis[i] = false;
}
dist[start] = 0;
ord.insert(make_pair(0, start));
while (ord.size() > 0) {
pair<int, int> cur = *ord.begin();
ord.erase(ord.begin());
vis[cur.second] = true;
for (int i=0; i<n; i++) {
if (!vis[i] && cur.first+adj[cur.second][i] < dist[i]) {
ord.erase(make_pair(dist[i], i));
dist[i] = cur.first+adj[cur.second][i];
ord.insert(make_pair(dist[i], i));
}
}
}
if (dist[end] == 1e9) {
cout << -1 << endl;
} else {
cout << dist[end] << endl;
}
}
컴파일 시 표준 에러 (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... |