Submission #70786

# Submission time Handle Problem Language Result Execution time Memory
70786 2018-08-23T11:02:03 Z edisonhello Crayfish scrivener (IOI12_scrivener) C++14
Compilation error
0 ms 0 KB
#include<ext/rope>
#define a auto

__gnu_cxx::crope r[1<<20];
int x;

a Init(){}
a TypeLetter(a c){
    ++x;
    r[x]=r[x-1];
    r[x].push_back(c);
}
a UndoCommands(a u){
    ++x;
    r[x]=r[x-u-1];
}
a GetLetter(a p){
    return r[x][p];
}

Compilation message

/tmp/ccCQG1mc.o: In function `main':
grader.cpp:(.text.startup+0xef): undefined reference to `TypeLetter(char)'
grader.cpp:(.text.startup+0x14b): undefined reference to `UndoCommands(int)'
grader.cpp:(.text.startup+0x177): undefined reference to `GetLetter(int)'
collect2: error: ld returned 1 exit status