# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
666366 | mychecksedad | Flight to the Ford (BOI22_communication) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"communication.h"
#include<bits/stdc++.h>
using namespace std;
void encode(int N, int X){
for(int j = 0; j < 2; ++j){
send(((1<<j)&X > 0));
send(((1<<j)&X > 0));
}
}
pair<int, int> decode(int N) {
int a = 0, b = 0;
int x[4];
for(int j = 0; j < 4; ++j) x[j] = receive;
if(x[0] == x[1]){
a += 1;
b += 1;
}else if(x[0] != x[1]){
a += 1;
}
if(x[2] == x[3]){
a += 2;
b += 2;
}else if(x[2] != x[3]){
b += 2;
}
return {a, b};
}