# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
103378 | DystoriaX | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 1092 ms | 44072 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
using namespace std;
int n, m;
vector<int> pos[30000];
unordered_map<int, unordered_map<int, int> > dist;
int main(){
scanf("%d%d", &n, &m);
int stb, stp, en;
for(int i = 0; i < m; i++){
int b, p;
scanf("%d%d", &b, &p);
if(i == 0) stb = b, stp = p;
if(i == 1) en = b;
pos[b].pb(p);
}
queue<pair<int, int> > q;
q.push({stb, stp});
dist[stb][stp] = 1;
int ans = -1;
while(!q.empty()){
int b, p;
tie(b, p) = q.front(); q.pop();
if(b == en){
ans = dist[b][p] - 1;
break;
}
//cout << b << " " << p << " " << dist[b][p] << endl;
if(b + p < n && dist[b + p][p] == 0){
dist[b + p][p] = dist[b][p] + 1;
q.push({b + p, p});
}
if(b - p >= 0 && dist[b - p][p] == 0){
dist[b - p][p] = dist[b][p] + 1;
q.push({b - p, p});
}
for(auto v : pos[b]){
if(b + v < n && dist[b + v][v] == 0){
dist[b + v][v] = dist[b][p] + 1;
q.push({b + v, v});
}
if(b - v >= 0 && dist[b - v][v] == 0){
dist[b - v][v] = dist[b][p] + 1;
q.push({b - v, v});
}
}
}
printf("%d\n", ans);
return 0;
}
컴파일 시 표준 에러 (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... |