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