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