#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};
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
2 ms |
332 KB |
Not correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
8 ms |
332 KB |
Not correct |
2 |
Halted |
0 ms |
0 KB |
- |