이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1e6+1;
int step, ptr;
int par[N][20];
char val[N];
int sz[N], pos[N];
void Init() { }
void TypeLetter(char L) {
val[++ptr] = L;
par[ptr][0] = pos[step];
sz[step+1] = sz[step];
for(int i = 1; i < 20; ++i) par[ptr][i] = par[par[ptr][i-1]][i-1];
sz[++step]++;
pos[step] = ptr;
}
void UndoCommands(int U) {
pos[step+1] = pos[step-U];
sz[step+1] = sz[step-U];
step++;
}
char GetLetter(int P) {
int jump = sz[step] - P - 1;
int p = pos[step];
for(int i = 19; ~i; --i) if(jump >> i & 1) p = par[p][i];
return val[p];
}
# | 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... |