Submission #595446

# Submission time Handle Problem Language Result Execution time Memory
595446 2022-07-13T18:31:08 Z Blagojce Flight to the Ford (BOI22_communication) C++17
0 / 100
53 ms 1772 KB
#include <bits/stdc++.h>
#define fr(i, n, m) for(int i = (n); i < (m); i ++)
#define st first
#define nd second
#define pb push_back
#define pq priority_queue
#define all(x) begin(x), end(x)
 
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pii;
 
#include "communication.h"
 
vector<int> V = {1,1,0,0,1,0,0,0,0,0,1,1,1,1,1,1,1,0,1,0,1,0,0,1,0,0,1,0,0,1,1,0,1,0,1,0,1,1,1,0,1,1,0,1,1,0,1,1,1,0,1,0,0,1,1,1,1,1,1,0,0,1,0,0,0,0,0,0,0,0,0,1,0,1,0,0,0,1,1,0,1,1,0,0,0,0,0,0,1,0,0,1,0,1,1,0,0,0,1,1};


//bool aux[250];
/*
 
vector<int> v;
int send(int x){
	cout<<x<<" SENDED"<<endl;
	int c;
	cin >> c;
	v.pb(c);
	return c;
}
int P = 0;
int receive(){
	cout<<"SEND ME"<<endl;
	int c;
	return v[P++];
}
*/
void encode(int N, int X){
	srand(N);
	int pos = 0;
	while(pos < 2){
		int bit = 0;
		if(X & (1<<pos)) bit = 1;
		
		int c = rand() + pos;
		int nxt = V[c%100];
		
		
		if(c % 3){
			int r = send(nxt);
			if(r != nxt){
				send(bit);
				++pos;
			}
		}
		else{
			int r1 = send(bit);
			int r2 = send(bit);
			
			if(r1 == r2){
				++pos;
			}
		}
	}

}
 
 
std::pair<int, int> decode(int N){
	srand(N);
	int pos = 0;
	
	int X = 0;
	while(pos < 2){
		int c = rand() + pos;
		int nxt = V[c%100];
		
		
		if(c % 3){
			int r = receive();
			if(r != nxt){
				int bit = receive();
				if(bit == 1) X |= (1<<pos);
				++pos;
			}
		}
		else{
			int r1 = receive();
			int r2 = receive();
			
			if(r1 == r2){
				if(r1 == 1) X |= (1<<pos);
				++pos;
			}
		}
	}
	
	return {X, X};
		
}/*
int main(){
	encode(10, 1);
	decode(10);
}
*/
# Verdict Execution time Memory Grader output
1 Correct 12 ms 1684 KB Output is correct
2 Correct 20 ms 1772 KB Output is correct
3 Correct 25 ms 1764 KB Output is correct
4 Correct 17 ms 1724 KB Output is correct
5 Correct 34 ms 1716 KB Output is correct
6 Incorrect 2 ms 200 KB Not correct
7 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 53 ms 200 KB Not correct
2 Halted 0 ms 0 KB -