# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
839348 | popovicirobert | Jakarta Skyscrapers (APIO15_skyscraper) | C++14 | 3 ms | 464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
constexpr int MAXN = 30'000;
constexpr int MAXP = 30'000;
bitset<MAXP + 1> visited[MAXN];
struct Node {
short b, p;
int dist;
};
int main() {
#ifdef HOME
ifstream cin("input.in");
ofstream cout("output.out");
#endif
ios::sync_with_stdio(false);
cin.tie(0), cout.tie(0);
int n, m;
cin >> n >> m;
vector<short> b(m), p(m);
vector<short> P(n);
for (int i = 0; i < m; i++) {
cin >> b[i] >> p[i];
P[b[i]] = p[i];
}
queue<Node> Q;
Q.push({b[0], p[0], 0});
visited[b[0]][p[0]] = true;
while (Q.size()) {
auto curr = Q.front();
Q.pop();
auto Go = [&Q](int b, int p, int dist) {
if (!visited[b][p]) {
Q.push({b, p, dist + 1});
visited[b][p] = true;
}
};
if (curr.b == b[1]) {
cout << curr.dist << "\n";
return 0;
}
if (curr.b >= curr.p) {
Go(curr.b - curr.p, curr.p, curr.dist);
}
if (curr.b + curr.p < n) {
Go(curr.b + curr.p, curr.p, curr.dist);
}
Go(curr.b, P[curr.b], curr.dist - 1);
}
cout << -1 << "\n";
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... |