# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
398618 | cpp219 | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimization "O2"
#pragma GCC optimization "unroll-loop"
#pragma GCC target ("avx2")
//#include ""
#include<bits/stdc++.h>
#include <ext/rope>
#define ll long long
#define ld long double
#define fs first
#define sc second
using namespace std;
typedef pair<ll,ll> LL;
const ll N = 1e6 + 9;
const ll inf = 1e16 + 7;
__gnu_cxx::crope s[1000100];
void Init(){}
ll id = 1;
void TypeLetter(char L){
s[id] = s[id - 1]; id++;
s[id].push_back(L);
}
void UndoCommands(ll U){
s[id] = s[id - U - 1]; id++;
}
char GetLetter(int P) {
return s[id][P];
}