Submission #709508

#TimeUsernameProblemLanguageResultExecution timeMemory
709508Hacv16Parrots (IOI11_parrots)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h> #include "encoder.h" using namespace std; void encode(int n, int m[]){ for(int i = 0; i < n; i++) for(int j = 0; j < 8; j++) send((i << 4) | (j << 1) | (bool)(m[i] & (1 << j))); }
#include <bits/stdc++.h> #include "decoder.h" using namespace std; void decode(int n, int l, int x[]){ sort(x, x + l); for(int i = 0; i < l; i += 8){ int cur = 0; for(int j = 0; j < 8; j++) cur |= ((x[i + j] & 1) << j); output(cur); } }

Compilation message (stderr)

encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:8:13: error: 'send' was not declared in this scope
    8 |             send((i << 4) | (j << 1) | (bool)(m[i] & (1 << j)));
      |             ^~~~

decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:14:9: error: 'output' was not declared in this scope
   14 |         output(cur);
      |         ^~~~~~