이 제출은 이전 버전의 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) {
if (256 <= i) {
send(i * 8 + j);
send(i * 8 + j);
}
else
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[])
{
int cnt[256] = { 0, };
for (int i = 0; i < L; i++) cnt[X[i]]++;
for (int i = 0; i < N; i++) {
int val = 0;
for (int j = 0; j < L; j++) {
int b = X[j];
if (i < 256 && cnt[b] == 1 || cnt[b] == 3) {
if (b / 8 == i)
val += cand[b % 8];
}
else if(256 <= i && cnt[b] == 2 || cnt[b] == 3){
if (b / 8 == i)
val += cand[b % 8];
}
}
output(val);
}
}
컴파일 시 표준 에러 (stderr) 메시지
decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:15:16: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
if (i < 256 && cnt[b] == 1 || cnt[b] == 3) {
~~~~~~~~^~~~~~~~~~~~~~
decoder.cpp:19:21: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
else if(256 <= i && cnt[b] == 2 || cnt[b] == 3){
~~~~~~~~~^~~~~~~~~~~~~~
# | 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... |