# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1103089 | aaaaaarroz | Message (IOI24_message) | C++17 | 503 ms | 420 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
vector<bool> send_packet(vector<bool> A);
void send_message(vector<bool> M, vector<bool> C){
for(int i=0;i<24;i++){
vector<bool>enviar(31,!C[i]);
send_packet(enviar);
}
vector<bool>enviar(31,false);
int cnt=0;
for(int i=0;i<31;i++){
if(cnt==7){
break;
}
if(!C[i]){
enviar[i]=(!C[cnt]);
cnt++;
}
}
send_packet(enviar);
enviar.resize(31,false);
int bit=0;
for(int i=0;i<31;i++){
if(C[i]){
continue;
}
if((M.size()>>bit)&1){
enviar[i]=1;
}
bit++;
}
send_packet(enviar);
vector<bool>envio;
int pos=0;
while(pos<M.size()){
if(C[envio.size()]==0){
envio.push_back(M[pos]);
pos++;
}
else{
envio.push_back(0);
}
if(envio.size()==31){
send_packet(envio);
envio.clear();
}
}
while(envio.size()<31){
envio.push_back(false);
if(envio.size()==31){
send_packet(envio);
break;
}
}
}
vector<bool> receive_message(vector<vector<bool>> R){
vector<bool>funciona(31,false);
for(int i=0;i<24;i++){
int votos=0;
for(int j=0;j<31;j++){
if(R[i][j]){
votos++;
}
}
if(votos>15){
funciona[i]=true;
}
}
int cnt=0;
for(int i=0;i<31;i++){
if(cnt==7){
break;
}
if(funciona[i]){
funciona[24+cnt]=R[24][i];
cnt++;
}
}
int bit=0;
int largo=0;
for(int i=0;i<31;i++){
if(!funciona[i]){
continue;
}
if(R[25][i]){
largo+=(1<<bit);
}
bit++;
}
vector<bool>sec;
for(int i=26;i<R.size();i++){
for(int j=0;j<31;j++){
if(funciona[j]){
sec.push_back(R[i][j]);
}
}
}
while(sec.size()>largo){
sec.pop_back();
}
return sec;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |