# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
357166 | daniel920712 | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 256 ms | 14416 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stack>
#include <vector>
using namespace std;
char last;
int con[1000005]={0};
int now=0;
int how=0;
int ok=0;
stack < char > ans;
vector < char > tt;
vector < pair < int , int > > all;
void Init()
{
}
void TypeLetter(char L)
{
all.push_back(make_pair(1,L));
now++;
}
void UndoCommands(int U)
{
all.push_back(make_pair(2,U));
now++;
}
char GetLetter(int P)
{
int t,i;
if(now<=5000||ok==0)
{
ok=1;
how=0;
tt.clear();
for(i=now-1;i>=0;i--)
{
if(how)
{
how--;
continue;
}
if(all[i].first==1) ans.push(all[i].second);
else how+=all[i].second;
}
while(!ans.empty())
{
tt.push_back(ans.top());
ans.pop();
}
}
return tt[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... |