Submission #976517

#TimeUsernameProblemLanguageResultExecution timeMemory
976517marinalucaCrayfish scrivener (IOI12_scrivener)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include <ext/rope>
__gnu_cxx::crope c[1000100];
int k;
void Init(){}
void TypeLetter(char L){
    k ++;
    c[k] = c[k - 1];
    c[k].push_back(L);
}
void UndoCommands(int U){
    k ++;
    s[k] = s[k - U - 1];
}
char GetLetter(int P){
   return c[k][P];
}

Compilation message (stderr)

scrivener.cpp: In function 'void UndoCommands(int)':
scrivener.cpp:13:5: error: 's' was not declared in this scope
   13 |     s[k] = s[k - U - 1];
      |     ^