Submission #1099065

#TimeUsernameProblemLanguageResultExecution timeMemory
1099065LIAFlight to the Ford (BOI22_communication)C++17
0 / 100
8 ms332 KiB
#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 timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...