#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int N, int M[]){
if (N <= 32) {
for (int i = 0; i < N; i++) {
int a = M[i] >> 4;
int b = M[i] & (0xf);
send(((i * 2) << 2) + (a >> 2));
send(((i * 2) << 2) + (a >> 2));
send(((i * 2) << 2) + (a & 3));
send(((i * 2 + 1) << 2) + (b >> 2));
send(((i * 2 + 1) << 2) + (b >> 2));
send(((i * 2 + 1) << 2) + (b & 3));
}
}
else {
int cnt = 0;
int temp[64];
memcpy(temp, M, sizeof(temp));
for (int i = 0; i < N; i++) {
for (int j = 0; j < 4; j++) {
int now = M[i] & 3;
cnt += now;
M[i] /= 4;
}
}
memcpy(M, temp, sizeof(temp));
if (cnt > N * 6) {
for (int i = 0; i < N; i++) {
for (int j = 0; j < 4; j++) {
int now = M[i] & 3;
now = 3 - now;
while (now--)
send((i << 2) + j);
M[i] /= 4;
}
}
send(0);
send(0);
send(0);
send(0);
}
else {
for (int i = 0; i < N; i++) {
for (int j = 0; j < 4; j++) {
int now = M[i] & 3;
while (now--)
send((i << 2) + j);
M[i] /= 4;
}
}
}
}
}
#include "decoder.h"
#include "decoderlib.h"
void decode(int N, int L, int X[]){
if (N <= 32) {
int ans[32] = { 0, }, cnt[64][4] = { 0, };
for (int i = 0; i < L; i++)
cnt[X[i] >> 2][X[i] & 3]++;
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 4; j++) {
if (cnt[i][j] == 1) {
ans[i / 2] |= i & 1 ? j : j << 4;
}
else if (cnt[i][j] == 2) {
ans[i / 2] |= i & 1 ? j << 2 : j << 6;
}
else if (cnt[i][j] == 3) {
ans[i / 2] |= i & 1 ? (j * 4 + j) : (j * 4 + j) << 4;
}
}
}
for (int i = 0; i < N; i++) {
output(ans[i]);
}
}
else {
int ans[64] = { 0, }, cnt[64][4] = { 0, };
for (int i = 0; i < L; i++)
cnt[X[i] >> 2][X[i] & 3]++;
if(cnt[0][0]>=4){
cnt[0][0] -= 4;
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 4; j++) {
ans[i] |= ((3 - cnt[i][j]) << (j * 2));
}
}
}
else {
for (int i = 0; i < 64; i++) {
for (int j = 0; j < 4; j++) {
ans[i] |= (cnt[i][j] << (j * 2));
}
}
}
for (int i = 0; i < N; i++) {
output(ans[i]);
}
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
804 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
1736 KB |
Output is correct |
2 |
Correct |
5 ms |
1872 KB |
Output is correct |
3 |
Correct |
6 ms |
2088 KB |
Output is correct |
4 |
Correct |
6 ms |
2168 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
2208 KB |
Output is correct |
2 |
Correct |
5 ms |
2208 KB |
Output is correct |
3 |
Correct |
6 ms |
2208 KB |
Output is correct |
4 |
Correct |
5 ms |
2208 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
2208 KB |
Output is correct |
2 |
Correct |
6 ms |
2208 KB |
Output is correct |
3 |
Correct |
6 ms |
2464 KB |
Output is correct |
4 |
Correct |
7 ms |
2464 KB |
Output is correct |
5 |
Correct |
7 ms |
2464 KB |
Output is correct |
6 |
Correct |
8 ms |
2464 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
6 ms |
2464 KB |
Output is partially correct - P = 6.000000 |
2 |
Partially correct |
8 ms |
2464 KB |
Output is partially correct - P = 6.000000 |
3 |
Partially correct |
7 ms |
2464 KB |
Output is partially correct - P = 6.090909 |
4 |
Partially correct |
10 ms |
2528 KB |
Output is partially correct - P = 6.020000 |
5 |
Partially correct |
12 ms |
2528 KB |
Output is partially correct - P = 6.033333 |
6 |
Partially correct |
15 ms |
2528 KB |
Output is partially correct - P = 6.047619 |
7 |
Partially correct |
14 ms |
2528 KB |
Output is partially correct - P = 6.031250 |