# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
120474 | KieranHorgan | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
char charOfStep[1000005];
int depth[1000005];
int kthAncestor[1000005][21];
int curStep = 0;
void Init() {}
void TypeLetter(char L) {
curStep++;
charOfStep[curStep] = L;
depth[curStep] = depth[curStep-1]+1;
kthAncestor[curStep][0] = curStep-1;
for(int i = 1; 1<<i <= depth[curStep]; i++)
kthAncestor[curStep][i] = kthAncestor[kthAncestor[curStep][i-1]][i-1];
}
void UndoCommands(int U) {
curStep++;
charOfStep[curStep] = charOfStep[curStep-1-U];
depth[curStep] = depth[curStep-1-U];
kthAncestor[curStep] = kthAncestor[curStep-1-U];
kthAncestor[curStep][0] = kthAncestor[curStep-1-U][0];
for(int i = 1; 1<<i <= depth[curStep]; i++)
kthAncestor[curStep][i] = kthAncestor[kthAncestor[curStep][i-1]][i-1];
}
char GetLetter(int P) {
int node = curStep;
for(int i = 21; i >= 0; i--)
if(depth[node] - (1<<i) >= P+1)
node = kthAncestor[node][i];
return charOfStep[node];
}