이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"communication.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int N, int X) {
int cnt=0;
X=X%3;
for (int i=1; i<=250; i++)
{
if ((cnt%3)==X) cnt+=send(1);
else cnt+=send(0);
}
}
std::pair<int, int> decode(int N) {
int cnt=0;
vector<int> sm(3);
for (int i=1; i<=250; i++)
{
cnt+=receive();
sm[cnt%3]++;
}
vector<pair<int, int>> v;
for (int i=0; i<3; i++) v.push_back({sm[i], (i==0)?3:i});
sort(v.begin(), v.end());
return {v[0].second, v[1].second};
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |