# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
64970 | mhnd | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "scrivener.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int N = 1e6+50;
const ll oo = 1e18;
const ll mod = 1e9+7;
struct node{
char c;
int p[30],sz;
node(){
memset(p,-1,sizeof(p));
sz=0;
}
};
node t[N];
int cur = 0;
void Init() {}
void TypeLetter(char L) {
t[cur].c = L;
t[cur].p[0] = cur-1;
if(cur)t[cur].sz = t[cur-1].sz + 1;
for(int i=1;i<30;i++)t[cur].p[i] = t[t[cur].p[i-1]].p[i-1];
cur++;
}
void UndoCommands(int U) {
t[cur] = t[cur-U-1];
cur++;
}
char GetLetter(int P) {
int u = t[cur-1].sz - P;
int at = cur-1;
for(int k = 29;k>=0;k--)
if((u>>k)&1)
at = t[at].p[k];
return t[at].c;
}