# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1103079 | 2024-10-19T23:16:05 Z | aaaaaarroz | Message (IOI24_message) | C++17 | 496 ms | 420 KB |
#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<25;i++){ vector<bool>enviar(31,!C[i]); send_packet(enviar); } vector<bool>enviar(31,false); int pos=0; int cnt=0; while(pos<31){ if(cnt==6){ break; } else{ if(!C[pos]){ enviar[pos]=!C[cnt+25]; cnt++; } } pos++; } int cantidad=M.size(); int bit=0; for(int i=pos-1;i<31;i++){ if(!C[i]){ enviar[i]=cantidad&(1<<bit); bit++; } } send_packet(enviar); vector<bool>envio; 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<25;i++){ int votos=0; for(int j=0;j<31;j++){ if(R[i][j]){ votos++; } } if(votos>15){ funciona[i]=true; } } int bit_real=0; int largo=0; int cnt=0; for(int i=0;i<31;i++){ if(cnt<6){ if(funciona[i]){ funciona[cnt+25]=R[25][i]; cnt++; } } else{ if(funciona[i]){ if(R[25][i]){ largo+=(1<<bit_real); } bit_real++; } } } 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
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 328 KB | decoded message is incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 496 ms | 420 KB | decoded message is incorrect |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 328 KB | decoded message is incorrect |
2 | Halted | 0 ms | 0 KB | - |