# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
308964 | vipghn2003 | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N=1e6+5;
int n,curNode,nT,p[N][20],cnt,pos[N],dep[N];
char c[N];
void init()
{
curNode=0;
cnt=0;;
memset(p,-1,sizeof p);
pos[0]=0;
}
void TypeLetter(char L)
{
cnt++;
nT++;
p[nT][0]=curNode;
dep[nT]=dep[curNode]+1;
c[nT]=L;
curNode=nT;
pos[cnt]=curNode;
for(int i=1;i<=18;i++) p[nT][i]=p[p[nT][i-1]][i-1];
}
void UndoCommands(int U)
{
curNode=pos[cnt-U];
cnt++;
pos[cnt]=curNode;
}
char GetLetter(int k)
{
int go=dep[curNode]-k;
int node=curNode;
for(int i=0;i<=18;i++) if(go>>i&1) node=p[node][i];
return c[node];
}
/*
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int m;
cin>>m;
while(m--)
{
int op;
cin>>op;
if(op==1)
{
char L;
cin>>L;
TypeLetter(L);
}
else if(op==2)
{
int u;
cin>>u;
UndoCommands(u);
}
else
{
int k;
cin>>k;
k++;
cout<<GetLetter(k)<<'\n';
}
}
}
14
1 a
1 b
3 1
1 d
2 2
2 1
3 2
1 e
2 1
2 5
1 c
3 2
2 2
3 2
*/