Submission #223966

#TimeUsernameProblemLanguageResultExecution timeMemory
223966Kenzo_1114Parrots (IOI11_parrots)C++17
Compilation error
0 ms0 KiB
#include<bits/stdc++.h> #include "encoder.h" #include "encoderlib.h" using namespace std; void encode(int n, int m[]) { for(int i = 0; i < n; i++) { for(int k = 7; k >= 0; k--) if(m[i] & (1 << k)) send(k + 8 * i); } }
#include<bits/stdc++.h> #include "encoder.h" #include "encoderlib.h" using namespace std; void decode(int n, int l, int x[]) { int id = 0; for(int i = 0; i < n; i++) { int num = 0; for(int k = 7; k >= 0; k--) if(id < l && x[id] == k + 8 * i) num += (1 << k), id++; output(num); } }

Compilation message (stderr)

decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:15:7: error: 'output' was not declared in this scope
       output(num);
       ^~~~~~
decoder.cpp:15:7: note: suggested alternative: 'getpt'
       output(num);
       ^~~~~~
       getpt