이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <communication.h>
#include <bits/stdc++.h>
using namespace std;
void encode(int n, int x) {
if (x == 1) {
send(1);
send(1);
send(1);
send(1);
} else if (x == 2) {
send(0);
send(0);
send(0);
send(0);
} else {
send(0);
send(1);
send(1);
send(0);
}
}
pair<int, int> decode(int n) {
vector<bool> canBe (3, true);
vector<int> bits {};
for (int i = 0; i < 4; i++)
bits.push_back(receive());
bool hasConseq = false;
for (int i = 0; i + 1 < 4; i++) {
if (bits[i] == 0 && bits[i + 1] == 0) {
canBe[0] = false;
hasConseq = true;
}
if (bits[i] == 1 && bits[i + 1] == 1) {
canBe[1] = false;
hasConseq = true;
}
}
if (hasConseq)
canBe[2] = false;
vector<int> ans {};
for (int i = 0; i < 3; i++)
if (canBe[i])
ans.push_back(i + 1);
assert((int)ans.size() <= 2);
if ((int)ans.size() == 1)
return {ans[0], ans[0]};
return {ans[0], ans[1]};
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |