# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
227732 | muhammad_hokimiyon | 앵무새 (IOI11_parrots) | C++14 | 11 ms | 1632 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int n, int a[])
{
for( int i = 0; i < n; i++ ){
for( int j = 0; j < 4; j++ ){
int res = i;
res += (j << 4);
for( int h = 6; h < 8; h++ ){
if( ((a[i] >> (j * 2 + h - 6)) & 1) ){
res += (1 << h);
}
}
send( res );
}
}
}
#include "decoder.h"
#include "decoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void decode(int n, int l, int a[])
{
vector < vector < int > > b(n , vector < int > (4));
for( int i = 0; i < l; i++ ){
int x = 0;
for( int j = 0; j < 4; j++ ){
if( ((a[i] >> j) & 1) ){
x ^= (1 << j);
}
}
int y = 0;
for( int j = 4 , h = 0; j < 6; j++,h++ ){
int z = ((a[i] >> j) & 1);
if( z )y ^= (1 << h);
}
int z = 0;
for( int j = 6 , h = 0; j < 8; j++,h++ ){
if( ((a[i] >> j) & 1) )z ^= (1 << h);
}
b[x][y] = z;
}
for( int i = 0; i < n; i++ ){
int x = 0;
for( int j = 0 , h = 0; j < 4; j++ ){
x ^= (b[i][j] << (j * 2));
}
output( x );
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |