# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
228031 | muhammad_hokimiyon | 앵무새 (IOI11_parrots) | C++14 | 24 ms | 1792 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>
#define fi first
#define se second
#define ll long long
#define dl double long
using namespace std;
void encode(int n, int a[])
{
for( int i = 0; i < n; i++ ){
for( int j = 0; j < 4; j++ ){
int x = i;
for( int h = 6; h < 8; h++ ){
if( ( (a[i] >> (j * 2 + h - 6)) & 1) ){
x += (1 << h);
}
}
if( x == i )continue;
for( int g = 0; g <= j; g++ ){
send( x );
}
}
}
}
#include "decoder.h"
#include "decoderlib.h"
#include <bits/stdc++.h>
#define fi first
#define se second
#define ll long long
#define dl double long
using namespace std;
void decode(int n, int l, int a[])
{
map < int , int > m;
for( int i = 0; i < l; i++ ){
m[a[i]] += 1;
}
vector < int > ans(n , 0);
for( auto x : m ){
int p = 0;
for( int j = 0; j < 6; j++ ){
if( (x.fi & (1 << j)) )p |= (1 << j);
}
int val = 0;
for( int j = 0; j < 2; j++ ){
if( (( x.fi >> (6 + j) ) & 1) ){
ans[p] |= (1 << ((x.se - 1) * 2 + j) );
}
}
}
for( int i = 0; i < n; i++ ){
output( ans[i] );
}
}
컴파일 시 표준 에러 (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... |