Submission #709506

#TimeUsernameProblemLanguageResultExecution timeMemory
709506Hacv16Parrots (IOI11_parrots)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "parrots.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 "parrots.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:2:10: fatal error: parrots.h: No such file or directory
    2 | #include "parrots.h"
      |          ^~~~~~~~~~~
compilation terminated.

decoder.cpp:2:10: fatal error: parrots.h: No such file or directory
    2 | #include "parrots.h"
      |          ^~~~~~~~~~~
compilation terminated.