이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define MAXN 1000005
#define LOGN 25
#define FOR(i, a, b) for(int i = a; i <= b; i++)
char l[MAXN];
int ln, qn;
int sz[MAXN], lj[MAXN][LOGN], dp[MAXN];
void Init() {
qn = 0;
sz[0] = 0;
l[0] = 'X', ln = 0;
dp[0] = 0;
}
void TypeLetter(char L) {
qn++, ln++;
sz[ln] = sz[dp[qn - 1]] + 1, l[ln] = L;
dp[qn] = ln;
lj[ln][0] = dp[qn - 1];
for(int ji = 1, jsz = 2; jsz <= ln; ji++, jsz *= 2){
lj[ln][ji] = lj[lj[ln][ji - 1]][ji - 1];
}
}
void UndoCommands(int U) {
qn++;
dp[qn] = dp[qn - U];
}
char GetLetter(int P) {
int szi = sz[dp[qn]];
int rmj = szi - P - 1;
int r = dp[qn];
FOR(i, 0, 20){
if((1 << i) & rmj){
r = lj[r][i];
}
}
cout << l[r] << endl;
}
컴파일 시 표준 에러 (stderr) 메시지
scrivener.cpp: In function 'char GetLetter(int)':
scrivener.cpp:46:1: warning: no return statement in function returning non-void [-Wreturn-type]
46 | }
| ^
# | 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... |