이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
vector<int> adj[30000];
struct node {
int u, di, vel;
};
int main() {
unordered_map<ll, bool> vis;
int n, m, b, p, d0, d1;
cin >> n >> m;
for (int i = 0; i < m; i++) {
cin >> b >> p;
if (i == 0) d0 = b;
if (i == 1) d1 = b;
if (0 <= b+p && b+p < n) adj[b].push_back(p);
if (0 <= b-p && b-p < n) adj[b].push_back(-p);
}
queue<node> bfs;
bfs.push({d0, 0, 0});
while (!bfs.empty()) {
auto& [u, di, vel] = bfs.front();
if (u == d1) {
cout << di << "\n";
return 0;
}
bfs.pop();
if (!vis[(u<<16)+vel] && u+vel >= 0 && u+vel < n) bfs.push({u+vel, di+1, vel}), vis[(u<<16)+vel] = true;
for (auto& s : adj[u]) if (!vis[(u<<16)+s]) bfs.push({u+s, di+1, s}), vis[(u<<16)+s] = true;
}
cout << "-1\n";
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
skyscraper.cpp: In function 'int main()':
skyscraper.cpp:26:3: warning: 'd1' may be used uninitialized in this function [-Wmaybe-uninitialized]
26 | if (u == d1) {
| ^~
skyscraper.cpp:23:10: warning: 'd0' may be used uninitialized in this function [-Wmaybe-uninitialized]
23 | bfs.push({d0, 0, 0});
| ~~~~~~~~^~~~~~~~~~~~
# | 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... |