# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
134326 | Kastanda | Editor (BOI15_edi) | C++11 | 263 ms | 50216 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// ItnoE
#include<bits/stdc++.h>
using namespace std;
const int N = 300005, LG = 19;
int n, R[N], P[N][LG], M[N][LG];
int main()
{
scanf("%d", &n);
for (int i = 1; i <= n; i ++)
{
int a;
scanf("%d", &a);
if (a > 0)
{
P[i][0] = i;
R[i] = a;
continue;
}
a = - a;
int nw = i - 1;
for (int j = LG - 1; ~ j; j --)
if (M[nw][j] >= a)
nw = P[nw][j];
P[i][0] = nw - 1;
R[i] = R[P[i][0]];
M[i][0] = a;
for (int j = 1; j < LG; j ++)
P[i][j] = P[P[i][j - 1]][j - 1],
M[i][j] = min(M[i][j - 1], M[P[i][j - 1]][j - 1]);
}
for (int i = 1; i <= n; i ++)
printf("%d\n", R[i]);
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... |