This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
int const nmax = 1000000;
char last;
int const lgmax = 19;
int far[1 + nmax][1 + lgmax], ptr = 0;
int level[1 + nmax];
char chr[1 + nmax];
void Init() {}
void TypeLetter(char L) {
++ptr;
far[ptr][0] = ptr - 1;
for(int h = 1; h < lgmax; h++)
far[ptr][h] = far[far[ptr][h - 1]][h - 1];
level[ptr] = level[far[ptr][0]] + 1;
chr[ptr] = L;
}
void UndoCommands(int U) {
++ptr;
far[ptr][0] = ptr - 1 - U;
for(int h = 1; h < lgmax; h++)
far[ptr][h] = far[far[ptr][h - 1]][h - 1];
level[ptr] = level[far[ptr][0]];
}
char GetLetter(int P) {
int pos = ptr;
P++;
for(int h = lgmax - 1; 0 <= h; h--)
if(P <= level[far[pos][h]] )
pos = far[pos][h];
return chr[pos];
}
# | 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... |