이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define FOR(i, a, b) for (int i = (a); i < (b); i++)
#define FORd(i, a, b) for (int i = (a); i >= (b); i--)
#define REP(i, n) FOR(i, 0, n)
using namespace std;
struct node {
node* ch[30];
node* par;
char c;
node(node* n, char cc) {
REP(i, 26) ch[i] = 0;
par = n, c = cc;
}
};
node* root;
vector <node*> ve;
int flag;
string s;
void Init() {
root = new node(NULL, '.');
ve.push_back(root);
return;
}
void TypeLetter(char L) {
flag = 1;
int x = (L - 'a');
if (!root->ch[x]) root->ch[x] = new node(root, L);
root = root->ch[x];
ve.push_back(root);
return;
}
void UndoCommands(int U) {
flag = 1;
root = ve[ve.size() - 1 - U];
ve.push_back(root);
return;
}
char GetLetter(int P) {
if (flag) {
s = "";
node* curr = root;
while (curr) {
s = s + curr->c;
curr = curr->par;
}
reverse(s.begin(), s.end());
flag = 0;
}
return s[P + 1];
}
# | 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... |