이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
//#include"grader.cpp"
#define fr first
#define sc second
using namespace std;
bool need_compile;
char res[1000005];
vector<pair<bool,int>>op;
void compile(){
need_compile=0;
int sz=0;
for(int i=op.size()-1;i>=0;i--){
auto to=op[i];
if(to.fr)i-=to.sc;
else res[sz++]=to.sc;
}
reverse(res,res+sz);
}
void Init(){}
void TypeLetter(char val){
need_compile=1;
op.push_back({0,int(val)});
}
void UndoCommands(int num){
need_compile=1;
op.push_back({1,num});
}
char GetLetter(int pos){
if(need_compile)compile();
return res[pos];
}
# | 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... |