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 "communication.h"
void encode(int N, int X) {
if (X == 1) {
send(0);
send(0);
} else if (X == 2) {
send(0);
send(1);
} else if (X == 3) {
send(1);
send(0);
}
send(0);
}
std::pair<int, int> decode(int N) {
int signal1 = receive();
int signal2 = receive();
if (signal1 == 0 && signal2 == 0) {
return {1, 1};
} else if (signal1 == 0 && signal2 == 1) {
return {2, 2};
} else if (signal1 == 1 && signal2 == 0) {
return {3, 3};
}
return {1, 1};
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |