# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
601379 | vh50 | 앵무새 (IOI11_parrots) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "encoder.h"
#include "encoderlib.h"
using namespace std;
void encode(int N, int M[])
{
for(int i = 0; i < N; i++)
{
for(int j = 0; j < 4; j++)
{
int aux;
aux = (i << 4) + (j << 2);
aux += (M[i] & (3 << (2 * j))) >> (2 * j);
send(aux);
if(i >= 15) send(aux);
}
}
}
#include <bits/stdc++.h>
#include "decoder.h"
#include "decoderlib.h"
using namespace std;
void decode(int N, int L, int X[])
{
int marc[300];
for(int i = 0; i < L; i++) marc[X[i]]++;
sort(X, X + L);
for(int i = 0; i < L; i += 4)
{
int aux = 0;
for(int j = 0; j < 4; j++)
{
if(X[i + j] & 1) aux += (1 << (2 * j));
if(X[i + j] & 2) aux += (1 << (2 * j + 1));
}
if(marc[X[i + j]] == 1) output(aux);
}
for(int i = 0; i < L; i += 4)
{
int aux = 0;
for(int j = 0; j < 4; j++)
{
if(X[i + j] & 1) aux += (1 << (2 * j));
if(X[i + j] & 2) aux += (1 << (2 * j + 1));
}
if(marc[X[i + j]] == 2) output(aux);
}
}