This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
char ans;
#define N 1000005
int root[N];
#define prev kfldsj
#define next kdslgjdgfs
int prev[N];
int next[N];
char val[N];
int len[N];
int curr = 1;
int last = 0;
int next_node = 0;
void Init() {
}
void TypeLetter(char L) {
curr++;
root[curr] = next_node++;
prev[root[curr]] = root[curr - 1];
len[root[curr]] = len[prev[root[curr]]] +1;
val[root[curr]] = L;
}
void UndoCommands(int U) {
curr++;
root[curr] = root[curr - U - 1];
}
char GetLetter(int P) {
int x = root[curr];
while (len[x] > P + 1 ){
// cerr << x << endl;
x = prev[x];
}
return val[x];
}
# | 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... |