이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int N = 1e6+5;
int up[N][20], depth[N], pos[N];
char a[N];
int cur=0, timer=0, node=0;
void Init() {
return;
}
void TypeLetter(char L) {
timer++;
node++;
a[node] = L;
up[node][0] = cur;
depth[node] = depth[cur]+1;
cur = node;
pos[timer] = cur;
for(int i=1;i<20;i++){
up[cur][i] = up[up[cur][i-1]][i-1];
}return;
}
void UndoCommands(int U) {
cur = pos[timer-U];
timer++;
pos[timer] = cur;
}
char GetLetter(int P) {
P++;
int u=cur;
for(int i=19;i>=0;i--){
if(depth[up[u][i]] >= P)u = up[u][i];
}return a[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... |