이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "encoder.h"
#include "encoderlib.h"
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vii;
typedef pair<int,int> pi;
#define REP(i,a,b) for(int i=a;i<b;i++)
#define F first
#define S second
#define PB push_back
#define MP make_pair
void encode(int N, int M[])
{
if(N<=32){
REP(i,0,N){
int k=i<<3;
REP(j,0,8){
int t=M[i]&(1<<j);
if(t!=0){
send(k+j);
}
}
}
}
else{
REP(i,0,N){
int k=i<<2;
REP(j,0,4){
int t=M[i]&(1<<j);
if(t!=0){
send(k+j);
}
}
REP(j,4,8){
int t=M[i]&(1<<j);
if(t!=0){
send(k+j/2);
send(k+j/2);
}
}
}
}
}
#include <bits/stdc++.h>
#include "decoder.h"
#include "decoderlib.h"
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef vector<vi> vii;
typedef pair<int,int> pi;
#define REP(i,a,b) for(int i=a;i<b;i++)
#define F first
#define S second
#define PB push_back
#define MP make_pair
void decode(int N, int L, int X[])
{
vi a(L);
REP(i,0,L)a[i]=X[i];
sort(a.begin(),a.end());
if(N<=32){
REP(i,0,N){
int k=i<<3;
int ans=0;
REP(j,0,8){
bool flag=binary_search(a.begin(),a.end(),k+j);
if(flag)ans|=(1<<j);
}
output(ans);
}
}
else{
REP(i,0,N){
int k=i<<2;
int ans=0;
REP(j,0,4){
int c=upper_bound(a.begin(),a.end(),k+j)-lower_bound(a.begin(),a.end(),k+j);
if(c%2==1)ans|=(1<<j);
if(c>1)ans|=(1<<(j+4));
}
output(ans);
}
}
}
# | 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... |