# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
172112 | arnold518 | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 933 ms | 214736 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
const int MAXN = 1e6;
const int MAXM = 20;
struct Node
{
int dep; char c;
int par[MAXM+1], chd[30];
Node()
{
int i, j;
dep=0; c='!';
for(i=0; i<26; i++) chd[i]=-1;
for(i=0; i<=MAXM; i++) par[i]=-1;
}
Node(int _dep, char _c, int _par)
{
int i, j;
dep=_dep; c=_c; par[0]=_par;
for(i=0; i<26; i++) chd[i]=-1;
for(i=1; i<=MAXM; i++) par[i]=-1;
}
};
int cnt;
Node nodes[MAXN+10];
int A[MAXN+10], T=0;
int makeNode(int dep, char c, int par)
{
int i, j;
nodes[cnt]=Node(dep, c, par);
for(i=1; i<=MAXM; i++) nodes[cnt].par[i]=nodes[nodes[cnt].par[i-1]].par[i-1];
return cnt++;
}
void Init()
{
T=0;
A[0]=makeNode(0, '!', -1);
}
void TypeLetter(char c)
{
int i, j;
T++;
int now=A[T-1];
if(nodes[now].chd[c-'a']==-1) nodes[now].chd[c-'a']=makeNode(nodes[now].dep+1, c, now);
A[T]=nodes[now].chd[c-'a'];
}
void UndoCommands(int u)
{
int i, j;
T++;
A[T]=A[T-1-u];
}
char GetLetter(int P)
{
int i, j;
int now=A[T];
P=nodes[now].dep-P-1;
for(i=MAXM; i>=0; i--)
{
if(P>=(1<<i))
{
now=nodes[now].par[i];
P-=(1<<i);
}
}
return nodes[now].c;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |