이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <string>
struct String{
int len;
char last;
int prev[20];
String():len(0),last('\0'){
}
}str[1000001];
int curr=0;
void Init() {}
void TypeLetter(char L) {
str[curr+1].len=str[curr].len+1;
str[curr+1].last=L;
str[curr+1].prev[0]=curr;
for(int k=1;k<20;k++){
str[curr+1].prev[k]=str[str[curr+1].prev[k-1]].prev[k-1];
}
curr++;
}
void UndoCommands(int U) {
str[curr+1]=str[curr-U];
curr++;
}
char GetLetter(int P) {
int move=str[curr].len-1-P;
int x=curr;
for(int k=0;k<20;k++){
if(move&(1<<k)){
x=str[x].prev[k];
}
}
return str[x].last;
}
# | 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... |