# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
130262 | khulegub | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 82 ms | 20232 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define xx first
#define yy second
#define mp make_pair
using namespace std;
/*
IM RETARDED, JUST SO YOU KNOW LOL.
*/
/*
#############################################
# x X x _ P u $ $ y S l a y e r 6 9 _ x X x #
#############################################
*/
/*
Check array size
Check IO
*/
int curr;
vector<pair<char, int> > s; //storing chars and ranks
// vector<int> node_par; //storing each node's origin
int node_par[100005][20]; //nodes parents
int par[100005]; //cmds parents
// vector<int> node_par[20];
// vector<int> par; //storing each cmd's origin
// vector<int> par[20]; //bin uplifting
vector<int> pos; //storing each cmd's position in "s"
void Init() {
s.pb(mp('#', 0));
curr = 0; //current cmd is 0
pos.pb(0); //cmd 0 s position of node is 0
node_par[0][0] = 0;
par[0] = 0;
// node_par.pb(0);
// par.pb(0); //cmd zero came from zero lol
}
void TypeLetter(char L) {
par[curr + 1] = curr;
s.pb(mp(L, s[ pos[curr] ].yy + 1)); //typing letter means new node
int node_curr = s.size() - 1;
node_par[node_curr][0] = pos[curr];
for (int i = 1; i <= 20; i++){
node_par[node_curr][i] = node_par[ node_par[node_curr][i - 1] ][i - 1];
}
pos.pb(s.size() - 1);
curr++;
}
void UndoCommands(int U) {
int origin = par[curr - U];
par[curr + 1] = curr; //2 ^ 0 th parent
curr++;
pos.pb(pos[origin]);
}
char GetLetter(int P) {
P++;
int tmp = pos[curr];
int j = s[tmp].yy - P;
for (int i = 0; i <= 20; i++ ){
if ( (j & (1 << i))){
tmp = node_par[tmp][i];
}
}
return s[tmp].xx;
}
컴파일 시 표준 에러 (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... |