제출 #419428

#제출 시각아이디문제언어결과실행 시간메모리
419428Bill_00크레이피쉬 글쓰는 기계 (IOI12_scrivener)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> using namespace std; char last; int a[1000005][25],cnt,lol[1000005],sz[1000005]; char x[1000005] void Init() {} int find(int num){ return lol[num]=(lol[num]==num?num:find(lol[num])); } void TypeLetter(char L) { cnt++; x[cnt]=L; sz[cnt]=sz[find(cnt-1)]+1; lol[cnt]=cnt; a[cnt][0]=find(cnt-1); for(int i=1;i<=20;i++){ a[cnt][i]=a[a[cnt][i-1]][i-1]; } } void UndoCommands(int U) { cnt++; lol[cnt]=find(cnt-U-1); sz[cnt]=sz[find(cnt-U-1)]; } char GetLetter(int P) { int siz=sz[find(cnt)]; int k=siz-P-1; int y=find(cnt); for(int i=20;i>=0;i--){ if(k>=(1<<i)){ y=a[y][i]; k-=(1<<i); } } return x[y]; }

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

scrivener.cpp:6:1: error: expected initializer before 'void'
    6 | void Init() {}
      | ^~~~
scrivener.cpp: In function 'void TypeLetter(char)':
scrivener.cpp:12:2: error: 'x' was not declared in this scope
   12 |  x[cnt]=L;
      |  ^
scrivener.cpp: In function 'char GetLetter(int)':
scrivener.cpp:36:9: error: 'x' was not declared in this scope
   36 |  return x[y];
      |         ^