Submission #906334

#TimeUsernameProblemLanguageResultExecution timeMemory
906334Darren0724Flight to the Ford (BOI22_communication)C++17
0 / 100
243 ms3252 KiB
#include"communication.h" #include<bits/stdc++.h> #include<bits/extc++.h> using namespace std; //#include "sample_grader.cpp" // // --- 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) { __gnu_cxx::sfmt19937 rnd(49); int a[4][250]; for(int j=0;j<250;j++){ for(int i=1;i<=3;i++){ a[i][j]=rnd()%2; } } for(int j=0;j<250;j++){ send(a[X][j]); } } pair<int, int> decode(int N) { __gnu_cxx::sfmt19937 rnd(49); int a[4][250]; for(int j=0;j<250;j++){ for(int i=1;i<=3;i++){ a[i][j]=rnd()%2; } } for(int i=0;i<250;i++){ a[0][i]=receive(); } int ans=0; for(int i=1;i<=3;i++){ int last=-5; int flag=1; for(int j=0;j<250;j++){ if(a[0][j]!=a[i][j]){ if(j-last==1){ flag=0; } last=j; } } if(flag){ ans=i; } } return {ans, ans}; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...