# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
70921 | FLDutchman | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 208 ms | 68144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define fast_io() ios::sync_with_stdio(false)
#define FOR(i, l, r) for(int i = (l); i < (r); i++)
struct llist{
vector<llist*> lift;
char c;
int sz = 1;
llist (char c) : c(c){}
};
int getsz(llist *l) {
if(!l) return 0;
return l->sz;
}
llist *insert(llist* l, char c){
llist *nl = new llist(c);
nl->sz = getsz(l)+1;
if(!l) return nl;
int i = 0;
while(l->lift.size() > i){
nl->lift.pb(l);
l = l->lift[i++];
}
return nl;
}
char getletter(llist *l, int i){
FOR(k, 0, 21) if(i & (1<<k)) l = l->lift[k];
return l->c;
}
vector <llist*> v;
void Init() {
v.pb(0);
}
void TypeLetter(char L) {
v.pb(insert(v.back(), L));
}
void UndoCommands(int U) {
v.pb(v[v.size()-1-U]);
}
char GetLetter(int P) {
auto l = v.back();
return getletter(l, getsz(l)-1 - P);
}
컴파일 시 표준 에러 (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... |