이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
const int N = 1e6 + 5, LG = 20;
int n;
char c[N];
int pr[LG][N], cnt[N];
void Init() {
}
void TypeLetter(char L) {
c[++n] = L;
pr[0][n] = n - 1;
cnt[n] = cnt[n - 1] + 1;
for (int j = 1; j < LG; ++j) {
pr[j][n] = pr[j - 1][pr[j - 1][n]];
}
}
void UndoCommands(int l) {
++n;
pr[0][n] = n - l - 1;
cnt[n] = cnt[n - l - 1];
for (int j = 1; j < LG; ++j) {
pr[j][n] = pr[j - 1][pr[j - 1][n]];
}
}
char GetLetter(int p) {
int u = n;
for (int j = LG - 1; ~j; --j) {
if (cnt[pr[j][u]] >= p + 1) {
u = pr[j][u];
}
}
return c[u];
}
# | 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... |