# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
914375 | VMaksimoski008 | 크레이피쉬 글쓰는 기계 (IOI12_scrivener) | C++14 | 770 ms | 91104 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define eb emplace_back
#define sz(x) (int)x.size()
#define all(x) x.begin(), x.end()
#define uniq(x) x.erase(unique(all(x)), x.end())
#define rall(x) x.rbegin(), x.rend()
//#define int long long
using namespace std;
using ll = long long;
using ull = unsigned long long;
using ld = long double;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
const int mod = 1e9 + 7;
const int LOG = 21;
const int maxn = 1e6 + 5;
const double eps = 1e-9;
int up[maxn][LOG], id=0;
char s[maxn];
int len[maxn];
void Init() {
s[0] = ' ';
}
void TypeLetter(char ch) {
s[++id] = ch;
len[id] = len[id-1] + 1;
up[id][0] = id - 1;
for(int i=1; i<LOG; i++) up[id][i] = up[ up[id][i-1] ][i-1];
}
void UndoCommands(int u) {
int prev = (++id) - u - 1;
s[id] = s[prev];
len[id] = len[prev];
up[id][0] = up[prev][0];
for(int i=1; i<LOG; i++) up[id][i] = up[ up[id][i-1] ][i-1];
}
char GetLetter(int p) {
int L = len[id]-p-1, pos = id;
for(int i=LOG-1; i>=0; i--)
if(L & (1 << i)) pos = up[pos][i];
return s[pos];
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |