이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
#ifndef MINC
#define MINC
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a ? (a = b, true) : false; }
template<class T> bool chmax(T &a, T b) { return a < b ? (a = b, true) : false; }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T L, T R) { while (L != R) cerr << *L << " \n"[next(L) == R], ++L; }
#else
#define DE(...) 0
#define debug(...) 0
#endif
#endif
// send(int b)
void encode(int N, int M[]) {
static const int MAX_N = 256;
static int cnt[MAX_N];
const int K = N * 10;
int b = 0;
for (int i = 0;i < N;++i) {
for (int j = 0;j < 8;++j)
cnt[b++] = M[i]>>j&1;
}
for (int i = 0;i < N * 8;++i)
if (cnt[i]) send(i);
}
#include "decoder.h"
#include "decoderlib.h"
#ifndef MINC
#define MINC
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb emplace_back
#define AI(i) begin(i), end(i)
template<class T> bool chmin(T &a, T b) { return b < a ? (a = b, true) : false; }
template<class T> bool chmax(T &a, T b) { return a < b ? (a = b, true) : false; }
#ifdef KEV
#define DE(args...) kout("[ " + string(#args) + " ] = ", args)
void kout() { cerr << endl; }
template<class T, class ...U> void kout(T a, U ...b) { cerr << a << ' ', kout(b...); }
template<class T> void debug(T L, T R) { while (L != R) cerr << *L << " \n"[next(L) == R], ++L; }
#else
#define DE(...) 0
#define debug(...) 0
#endif
#endif
// output(int b)
void decode(int N, int L, int X[]) {
static const int MAX_N = 256;
static int cnt[MAX_N];
for (int i = 0;i < L;++i)
++cnt[X[i]];
//sort(X, X+L);
DE(N, L);
for (int i = 0;i < L;++i)
DE(X[i]);
int b = 0;
for (int i = 0;i < N;++i) {
int res = 0;
for (int j = 0;j < 8;++j)
res |= cnt[b++] << j;
output(res);
//output(res ^ ((1<<8)-1));
}
for (int i = 0;i < L;++i) cnt[X[i]] = 0;
}
컴파일 시 표준 에러 (stderr) 메시지
encoder.cpp: In function 'void encode(int, int*)':
encoder.cpp:30:12: warning: unused variable 'K' [-Wunused-variable]
30 | const int K = N * 10;
| ^
decoder.cpp: In function 'void decode(int, int, int*)':
decoder.cpp:20:17: warning: statement has no effect [-Wunused-value]
20 | #define DE(...) 0
| ^
decoder.cpp:34:2: note: in expansion of macro 'DE'
34 | DE(N, L);
| ^~
decoder.cpp:20:17: warning: statement has no effect [-Wunused-value]
20 | #define DE(...) 0
| ^
decoder.cpp:36:3: note: in expansion of macro 'DE'
36 | DE(X[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... |