# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
646924 | gnhmhp | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#define taskname "typing."
#define fastio ios_base::sync_with_stdio(false); cin.tie(nullptr)
#include <bits/stdc++.h>
using namespace std;
const int maxn=1e6+1;
int sz[maxn], q, cver=0;
struct node
{
node* left;
node* right;
char c;
node()
{
left=right=nullptr;
}
} root=node();
node* ver[maxn];
void build(node *p, int l, int r)
{
if (l==r) return;
int mid=(l+r)/2;
p->left=new node();
p->right=new node();
build(p->left, l, mid);
build(p->right, mid+1, r);
}
node* update(node* i, int l, int r, int x, char ch)
{
node* cur=new node();
if (l==r)
{
cur->c=ch;
return cur;
}
int mid=(l+r)/2;
cur=i;
if (x<=mid)
cur->left=update(i->left, l, mid, x, ch);
else
cur->right=update(i->right, mid+1, r, x, ch);
return cur;
}
char get(node* i, int l, int r, int x)
{
if (l==r) return i->c;
int mid=(l+r)/2;
if (x<=mid) return get(i->left, l, mid, x);
return get(i->right, mid+1, r, x);
}
int main()
{
fastio;
cin >> q;
build(&root, 0, q);
sz[0]=-1; ver[0]=&root;
for (int i=1; i<=q; ++i)
{
char t; int x;
cin >> t;
if (t=='T')
{
cin >> t;
sz[cver+1]=sz[cver]+1;
ver[cver+1]=update(ver[cver], 0, q, sz[cver+1], t);
++cver;
}
else if (t=='U')
{
cin >> x;
ver[cver+1]=ver[cver-x];
sz[cver+1]=sz[cver-x];
++cver;
}
else
{
cin >> x;
cout << get(ver[cver], 0, q, x) << '\n';
}
}
}