Submission #447688

#TimeUsernameProblemLanguageResultExecution timeMemory
447688dxz05Parrots (IOI11_parrots)C++14
Compilation error
0 ms0 KiB
#include "encoder.h" #include "encoderlib.h" #include <bits/stdc++.h> using namespace std; void encode(int N, int M[]){ assert(N == 8 && M[0] == 1 && M[1] == 0 && M[2] == 1 && M[3] == 0 && M[4] == 0 && M[5] == 1 && M[6] == 1 && M[7] == 0); for (int i = 0; i < N; i++){ for (int j = 0; j < 8; j++){ /// ABBBBCCC int code = (M[i] & (1 << j)) > 0; code <<= 4; code |= i; code <<= 3; code |= j; send(code); } } }

Compilation message (stderr)

/usr/bin/ld: /tmp/cckKNgdF.o: in function `main':
grader_decoder.cpp:(.text.startup+0x1ef): undefined reference to `decode(int, int, int*)'
collect2: error: ld returned 1 exit status