이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define P(x) do {if(debug) cout << x << endl;} while(false)
#define H(x) P(#x << ": " << x)
#define FR(i, a, b) for(int i = (a); i < (b); ++i)
#define F(i, n) FR(i, 0, n)
using namespace std;
const bool debug = 0 ;
const int inf = 1e9;
const int N = 1000005;
//int ind[N];
char parent[N];
int depth[N];
int memo[N][23];
//bool check[N][23];
int cur;
/*int root(int a){
if(a==ind[a]){
return a;
}
return ind[a] = root(ind[a]);
}*/
void print(){
if(debug){
//cout<<"ind: ";
//F(i, cur+1) cout<<ind[i]<<" ";
cout<<"\nparent: ";
F(i, cur+1) cout<<parent[i]<<" ";
cout<<"\ndepth: ";
F(i, cur+1) cout<<depth[i]<<" ";
cout<<"\nmemo: ";
F(i, cur+1) cout<<memo[i][0]<<" ";
}
}
/*int f(int i, int h){
if(check[i][h]){
return memo[i][h];
}
check[i][h] = true;
return memo[i][h] = f(f(i,h-1) , h-1);
}*/
void Init() {
//ind[0] = 0;
parent[0] = '\\';
depth[0] = 0;
P("I");
//memo.resize(N, vector<int> (23, -1));
memo[0][0] = 0;
//check[0][0] = true;
P("II");
cur = 0;
}
void TypeLetter(char L) {
H(L);
int n = cur+1;
//ind[n] = n;
parent[n]=L;
memo[n][0] = cur;
//check[n][0] = true;
depth[n] = depth[cur]+1;
FR(i, 1, 23){
memo[n][i] = memo[memo[n][i-1]][i-1];
//check[n][i] = true;
}
//cout<<endl;
cur = n;
}
void UndoCommands(int U) {
H(U);
parent[cur+1] = parent[cur-U];
depth[cur+1] = depth[cur-U];
F(i, 23){
memo[cur+1][i] = memo[cur-U][i];
//check[cur+1][i] = true;
}
cur++;
}
char GetLetter(int P) {
H(P);
print();
int res = cur;
for(int h = 22; h>=0; h--){
if(depth[memo[res][h]]>P) res = memo[res][h];
}
return parent[res];
}
# | 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... |