# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
261003 | georgerapeanu | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++11 | 824 ms | 94972 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma once
#include <vector>
#include <algorithm>
#include <cstdio>
using namespace std;
const int NMAX = 1e6;
const int LGMAX = 21;
vector< vector<int> > father;
vector<int> lvl;
vector<int> active_node;
vector<char> c;
int create_new_node(int tata,char l){
int node = (int)father.size();
father.push_back(vector<int>(LGMAX,0));
c.push_back(l);
father.back()[0] = tata;
lvl.push_back(1 + lvl[tata]);
for(int i = 1;i < LGMAX;i++){
father.back()[i] = father[father.back()[i - 1]][i - 1];
}
return node;
}
void Init() {
father.push_back(vector<int>(LGMAX,0));
active_node.push_back(0);
lvl.push_back(0);
c.push_back('0');
}
void TypeLetter(char L) {
active_node.push_back(create_new_node(active_node.back(),L));
}
void UndoCommands(int U) {
active_node.push_back(active_node[(int)active_node.size() - 1 - U]);
}
char GetLetter(int P) {
P++;
int node = active_node.back();
P = lvl[node] - P;
for(int i = LGMAX - 1;i >= 0;i--){
if((P >> i) & 1){
node = father[node][i];
P ^= (1 << i);
}
}
return c[node];
}
컴파일 시 표준 에러 (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... |