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;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#include "encoder.h"
#include "encoderlib.h"
void encode(int n, int m[]){
for(int i=0;i<n;i++){
for(int j=0;j<8;j++){
if(m[i]&(1<<j)){
send(j*n+i);
}
}
}
}
#include <bits/stdc++.h>
using namespace std;
typedef long long llo;
#define mp make_pair
#define pb push_back
#define a first
#define b second
#include "decoder.h"
#include "decoderlib.h"
void decode(int n, int l, int x[]){
vector<int> ans;
for(int i=0;i<n;i++){
ans.pb(0);
}
for(int i=0;i<l;i++){
ans[x[i]%n]+=(1<<(x[i]/n));
}
for(auto j:ans){
output(j);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |