이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define all(aaa) aaa.begin(), aaa.end()
using namespace std;
const int N = 3e4 + 5, INF = 1e9;
int d[N];
vector<int> v[N], q[N];
signed main() {
ios_base::sync_with_stdio(0);
cin.tie(NULL);
int n, m;
cin >> n >> m;
int finish, start;
for (int i = 0; i < m; i++) {
int x, y;
cin >> x >> y;
v[x].push_back(y);
if (i == 0)
start = x;
if (i == 1)
finish = x;
}
fill(d, d + n, INF);
q[0].push_back(start);
d[start] = 0;
for (int i = 0; i < n; i++) {
while (!q[i].empty()) {
int node = q[i].back();
q[i].pop_back();
if (d[node] != i)
continue;
for (int x : v[node]) {
int y = node + x, ct = 1;
while (y < n) {
if (d[y] > d[node] + ct) {
d[y] = d[node] + ct;
q[d[y]].push_back(y);
}
ct++;
y += x;
}
y = node - x, ct = 1;
while (y >= 0) {
if (d[y] > d[node] + ct) {
d[y] = d[node] + ct;
q[d[y]].push_back(y);
}
ct++;
y -= x;
}
}
}
}
cout << (d[finish] < INF ? d[finish] : -1);
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
skyscraper.cpp: In function 'int main()':
skyscraper.cpp:68:22: warning: 'finish' may be used uninitialized in this function [-Wmaybe-uninitialized]
cout << (d[finish] < INF ? d[finish] : -1);
~~~~~~~~^
# | 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... |