답안 #742382

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
742382 2023-05-16T08:01:28 Z jamielim Flight to the Ford (BOI22_communication) C++17
0 / 100
9 ms 200 KB
#include "communication.h"
#include <bits/stdc++.h>
using namespace std;

#define fi first
#define se second
#define mp make_pair
#define pb emplace_back
#define ALL(x) x.begin(),x.end()
#define SZ(x) (int)x.size()
typedef long long ll;
typedef pair<int,int> ii;
typedef pair<ii,ii> i4;
typedef vector<int> vi;
const int MOD=1000000007;
const int INF=1012345678;
const ll LLINF=1012345678012345678LL;
const double PI=3.1415926536;
const double EPS=1e-14;

//
// --- Sample implementation for the task communication ---
//
// To compile this program with the sample grader, place:
//     communication.h communication_sample.cpp sample_grader.cpp
// in a single folder, then open the terminal in this directory (right-click onto an empty spot in the directory,
// left click on "Open in terminal") and enter e.g.:
//     g++ -std=c++17 communication_sample.cpp sample_grader.cpp
// in this folder. This will create a file a.out in the current directory which you can execute from the terminal
// as ./a.out
// See task statement or sample_grader.cpp for the input specification
//

void encode(int N, int X) {
    if(X==1){
		int x=0;
		for(int i=0;i<100;i++){
			if(send(x)!=x){
				send(x);
				break;
			}
		}
	}else{
		int x=1;
		for(int i=0;i<100;i++){
			if(send(x)!=x){
				send(x);
				break;
			}
		}
	}
}

pair<int, int> decode(int N) {
	int a1=receive();
	int a2=receive();
	if(a1!=a2){
		if(a2==0)return {1,1};
		else return {2,3};
	}
	if(a1==0)return {1,1};
    return {2,3};
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 3 ms 200 KB Not correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 9 ms 200 KB Not correct
2 Halted 0 ms 0 KB -