# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1035205 | NeroZein | Parrots (IOI11_parrots) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int N, int M[]) {
for (int i = 0; i < N; ++i) {
for (int j = 0; j < 4; ++j) {
int num = i | (j << 4);
int b = ((M[i] >> (j * 2) & 1) << 6);
b |= ((M[i] >> (j * 2 + 1) & 1) << 7);
num |= b;
//cerr << "i, j, num: " << i << ' ' << j << ' ' << num << '\n';
send(num);
}
}
}