# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
189068 | AQT | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 1041 ms | 17492 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
struct node{
int p;
int len;
char c;
};
node arr[1000005];
int crnt = 0, idx = 0;
int tbl[20][1000005];
void Init(){
arr[0] = {-1, 0, ' '};
}
void TypeLetter(char c){
arr[++idx] = {crnt, arr[crnt].len+1, c};
tbl[0][idx] = crnt;
for(int d = 1; d<20; d++){
tbl[d][idx] = tbl[d-1][tbl[d-1][idx]];
}
crnt = idx;
}
void UndoCommands(int u){
int temp = crnt;
while(u--){
crnt = arr[crnt].p;
}
}
char GetLetter(int p){
int t = crnt;
p++;
for(int d = 19; d>=0; d--){
if(arr[tbl[d][t]].len >= p){
t = tbl[d][t];
}
}
return arr[t].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... |