# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
651098 | TimDee | Flight to the Ford (BOI22_communication) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
pair<int,int> decode(int n) {
mt19937 rng(n);
int x=rng();
if (x&1) {
for (int i=0; i<100; ++i) {
int f=receive(), s=receive();
if (f==s) {
if (f==0) return {1,2};
else return {2,3};
}
}
} else {
for (int i=0; i<100; ++i) {
int f=receive(), s=receive();
if (f==s) {
if (f==1) return {1,2};
else return {2,3};
}
}
}
x=rng();
if (x&1) return {1,3};
else return {2,3};
}
void encode(int n, int x) {
mt19937 rng(n);
int p=rng();
if (p&1) {
for (int i=0; i<100; ++i) {
if (x<=2) send(0);
else send(1);
if (x<=2) send(0);
else send(1);
}
} else {
for (int i=0; i<100; ++i) {
if (x>=2) send(0);
else send(1);
if (x>=2) send(0);
else send(1);
}
}
}