이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
const int MAX=1e6+5;
char X[MAX];
int ind,tot,arr[MAX],height[MAX],Parent[MAX][22];
void Init()
{
return ;
}
void TypeLetter(char L)
{
X[++ind]=L;
Parent[ind][0]=arr[tot++];
height[ind]=height[Parent[ind][0]]+1;
for(int A=1;A<20;A++)
Parent[ind][A]=Parent[Parent[ind][A-1]][A-1];
arr[tot]=ind;
return ;
}
void UndoCommands(int U)
{
++tot;
arr[tot]=arr[tot-U-1];
return ;
}
char GetLetter(int P)
{
int res=arr[tot];
for(int A=19;A>=0;A--)
{
if(height[Parent[res][A]]>P)
res=Parent[res][A];
}
return X[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... |