# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
896457 | anton | 앵무새 (IOI11_parrots) | C++17 | 3 ms | 1336 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
#include<bits/stdc++.h>
using namespace std;
void encode(int N, int M[])
{
if(N<=32){
int id = 0;
for(int i=0; i<N; i++){
for(int j = 0; j<8; j++){
if((M[i] & (1<<j))!=0){
send(id);
}
id++;
}
}
}
else{
int nb1 = 0;
for(int i=0; i<N; i++){
for(int j = 0; j<8; j++){
if((M[i] & (1<<j))!=0){
nb1++;
}
}
}
//cout<<nb1<<endl;
if(nb1<N*4){
//cout<<"no swap"<<endl;
int id = 0;
for(int i=0; i<N; i++){
for(int j = 0; j<8; j++){
if((M[i] & (1<<j))!=0){
send(id);
}
id++;
}
}
}
else{
vector<int>mes(N);
for(int i = 0; i<N; i++){
mes[i] = M[i]^((1<<8)-1);
}
int id = 0;
for(int i=0; i<N; i++){
for(int j = 0; j<8; j++){
if((mes[i] & (1<<j))!=0){
//cout<<id<<endl;
send(id);
}
id++;
}
}
send((N-1)*8 + 7);
send((N-1)*8 + 7);
}
}
}
#include "decoder.h"
#include "decoderlib.h"
#include<bits/stdc++.h>
using namespace std;
void decode(int N, int L, int X[])
{
//cout<<"L "<<L<<endl;
vector<int> v(L);
for(int i = 0; i<L; i++){
v[i] = X[i];
}
sort(v.begin(), v.end());
vector<int> res(N);
bool swaping = false;
for(int i = 0; i<L; i++){
if(i>0 && v[i]==v[i-1]){
swaping = true;
}
res[v[i]/8]^=(1<<(v[i]%8));
}
for(auto e: res){
//cout<<bitset<8>(e)<<endl;
}
if(swaping){
//cout<<"swapping"<<endl;
for(int i = 0; i<N; i++){
res[i] ^= (1<<8)-1;
}
}
for(auto e: res){
//cout<<e<<endl;
}
for(auto e: res){
output(e);
}
}
컴파일 시 표준 에러 (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... |