이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
template <class T>
using Vec = std::vector<T>;
struct Node {
char written;
int depth;
std::array<int, 20> parent;
};
Vec<int> at;
Vec<Node> node;
void Init() {
at.push_back(0);
std::array<int, 20> tmp;
tmp.fill(0);
node.push_back(Node{'$', 0, tmp});
}
void TypeLetter(char L) {
std::array<int, 20> tmp;
tmp[0] = at.back();
for (int i = 1; i < 20; ++i) {
tmp[i] = node[tmp[i - 1]].parent[i - 1];
}
node.push_back(Node{L, node[at.back()].depth + 1, tmp});
at.push_back(node.size() - 1);
}
void UndoCommands(int U) {
at.push_back(at[at.size() - U - 1]);
}
char GetLetter(int P) {
int u = at.back();
int len = node[u].depth - P - 1;
for (int i = 0; i < 20; ++i) {
if (len >> i & 1) {
u = node[u].parent[i];
}
}
return node[u].written;
}
# | 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... |