제출 #416033

#제출 시각아이디문제언어결과실행 시간메모리
416033arayi크레이피쉬 글쓰는 기계 (IOI12_scrivener)C++17
컴파일 에러
0 ms0 KiB
#include "grader.h" #include <vector> #include <iostream> #include <algorithm> #include <set> #define ad push_back using namespace std; const int N = 1e6 + 10; int a[N], i1 = 1, nax[N]; int p[N][20]; char c[N]; void Init() { } void TypeLetter(char L) { a[i1] = a[i1 - 1] + 1; nax[i1] = nax[i1 - 1]; c[i1++] = L; } void UndoCommands(int U) { a[i1] = a[i1 - U - 1]; nax[i1] = i1; p[i1][0] = nax[i1 - U - 1]; for (int i = 1; i < 18; i++) p[i1][i] = p[p[i1][i - 1]][i - 1]; i1++; } char GetLetter(int P) { P++; int s = nax[i1 - 1]; if (a[s] < P) return c[s + P - a[s]]; for (int i = 17; i >= 0; i--) if (a[p[s][i]] >= P)s = p[s][i]; s = p[s][0]; return c[s + P - a[s]]; }

컴파일 시 표준 에러 (stderr) 메시지

scrivener.cpp:1:10: fatal error: grader.h: No such file or directory
    1 | #include "grader.h"
      |          ^~~~~~~~~~
compilation terminated.