이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "encoder.h"
#include "encoderlib.h"
using namespace std;
const int N = 513;
void encode(int n, int a[])
{
int cnt = 0, i = 0, ok = 0, tot = 3 * 128;
while (cnt <= 248 && i < n)
{
int nr = 128;
while(nr)
{
if (a[i] & nr)
ok++;
nr /= 2;
cnt++;
}
i++;
}
while (cnt <= 504 && i < n)
{
int nr = 128;
while (nr)
{
if (a[i] & nr)
{
ok += 2;
//send(cnt - 256);
//send(cnt - 256);
}
nr /= 2;
cnt++;
}
i++;
}
if (ok <= tot)
ok = 1;
else
ok = 0;
cnt = i = 0;
while (cnt <= 248 && i < n)
{
int nr = 128;
while(nr)
{
if ((a[i] & nr) == nr * ok)
send(cnt);
nr /= 2;
cnt++;
}
i++;
}
while (cnt <= 504 && i < n)
{
int nr = 128;
while (nr)
{
if ((a[i] & nr) == nr * ok)
{
send(cnt - 256);
send(cnt - 256);
}
nr /= 2;
cnt++;
}
i++;
}
if (!ok)
{
send(0);
send(0);
send(0);
send(0);
}
}
#include <bits/stdc++.h>
#include "decoder.h"
#include "decoderlib.h"
using namespace std;
const int N = 513;
int vf[N];
int ans[N];
int bits[N];
void decode(int n, int l, int a[])
{
for (int i = 0; i < 256; i++)
vf[i] = 0;
for (int i = 0; i < l; i++)
{
vf[a[i]]++;
}
for (int i = 0; i < N; i++)
bits[i] = 0;
if (vf[0] >= 4)
{
for (int i = 0; i < N; i++)
bits[i] = 1;
}
for (int i = 0; i < 256; i++)
{
if (vf[i] & 1)
bits[i] |= 1;
if (vf[i] & 2)
bits[i] |= 1;
}
int j = 0;
for (int i = 0; i < n; i++)
{
int nr = 128;
ans[i] = 0;
while (nr)
{
ans[i] += bits[j] * nr;
nr /= 2;
j++;
}
output(ans[i]);
}
}
# | 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... |