이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <algorithm>
using namespace std;
int N, A[1 << 19], dp[1 << 19][22], ret[1 << 19], dp2[1 << 19][22];
int main() {
cin >> N;
for (int i = 1; i <= N; i++) {
cin >> A[i];
if (A[i] > 0) { for (int j = 0; j <= 21; j++) { dp[i][j] = i; dp2[i][j] = 0; } ret[i] = A[i]; }
else {
int cx = i - 1, level = -A[i];
for (int j = 21; j >= 0; j--) {
if (dp2[cx][j] >= level) cx = dp[cx][j];
}
cx--;
if (cx == 0) { ret[i] = 0; for (int j = 0; j <= 21; j++) dp2[i][j] = level; }
else {
ret[i] = ret[cx];
dp[i][0] = cx; dp2[i][0] = level;
for (int j = 1; j <= 21; j++) {
dp[i][j] = dp[dp[i][j - 1]][j - 1];
dp2[i][j] = min(dp2[i][j - 1], dp2[dp[i][j - 1]][j - 1]);
}
}
}
}
for (int i = 1; i <= N; i++) cout << ret[i] << endl;
return 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... |