이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
const int cand[] = { 128, 64, 32, 16, 8, 4, 2, 1 };
void encode(int N, int M[])
{
for (int i = 0; i < N; i++) {
int val = M[i];
for (int j = 0; j < 8; j++) {
if (cand[j] <= val) {
send(i * 8 + j);
val -= cand[j];
}
}
}
}
#include "decoder.h"
#include "decoderlib.h"
const int cand[] = { 128, 64, 32, 16, 8, 4, 2, 1 };
void decode(int N, int L, int X[])
{
for (int i = 0; i < N; i++) {
int val = 0;
for (int j = 0; j < L; j++) {
int b = X[j];
if (b / 8 == i)
val += cand[b % 8];
}
output(val);
}
}
# | 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... |