# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
935869 | PagodePaiva | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++17 | 1067 ms | 16032 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#define N 1000005
using namespace std;
int pai[N], h[N], jump[N], pos[N];
char letter[N];
int t;
void Init() {
t = 0;
}
void TypeLetter(char L) {
t++;
pai[t] = t-1;
h[t] = h[t-1] + 1;
letter[t] = L;
pos[t] = pos[t-1]+1;
int p = t-1;
if(h[jump[p]] - h[p] == h[jump[jump[p]]] - h[jump[p]]){
jump[t] = jump[jump[p]];
}
else{
jump[t] = p;
}
}
void UndoCommands(int U) {
t++;
pai[t] = t-U-1;
int p = pai[t];
h[t] = h[pai[t]] + 1;
letter[t] = letter[p];
pos[t] = pos[p];
if(h[jump[p]] = h[p] == h[jump[jump[p]]] - h[jump[p]]){
jump[t] = jump[jump[p]];
}
else{
jump[t] = p;
}
}
char GetLetter(int P) {
P++;
int v = t;
while(pos[v] > P){
if(pos[jump[v]] < P){
v = pai[v];
}
else{
v = jump[v];
}
}
return letter[v];
}
컴파일 시 표준 에러 (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... |