이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define MAXN 1000009
#define LOGN 20
int t[LOGN + 1][MAXN];
char val[MAXN];
int h[MAXN], stare[MAXN];
int nodes, stari;
void Init() {
nodes = 1;
stari = 1;
stare[stari] = 1;
}
void TypeLetter(char L) {
nodes++;
h[nodes] = h[stare[stari]] + 1;
t[0][nodes] = stare[stari];
int x = 1;
while (t[x - 1][nodes]) {
t[x][nodes] = t[x - 1][t[x - 1][nodes]];
x++;
}
val[nodes] = L;
stare[++stari] = nodes;
}
void UndoCommands(int U) {
stare[stari + 1] = stare[stari - U];
stari++;
}
char GetLetter(int P) {
int nod = stare[stari];
int cat = h[nod] - P - 1;
for (int i = 0; i < LOGN; i++)
if (cat & (1 << i))
nod = t[i][nod];
return val[nod];
}
# | 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... |