# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
114811 | Shafin666 | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
const int maxn = 1e5+10;
int state[maxn], parent[maxn][25];
int depth[maxn]; char letter[maxn];
int stat = 0, command = 0;
void Init() {}
void TypeLetter(char L) {
stat++, command++;
state[command] = stat;
letter[stat] = L;
int par = state[command - 1];
depth[stat] = depth[par] + 1;
parent[stat][0] = par;
letter[stat] = L;
for(int i = 0; i <= 20; i++)
parent[stat][i] = parent[parent[stat][i-1]][i-1];
}
void UndoCommands(int U) {
command++;
state[command] = state[commdand - U - 1];
}
char GetLetter(int P) {
int cur = state[command];
P = depth[cur] - P - 1;
for(int i = 0; i <= 20; i++)
if(P & (1 << i))
cur = parent[cur][i];
return letter[cur];
}