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