# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1022577 | jamjanek | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 2 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//Rozwiazanie pelne k = m = n*log(n)
#include <bits/stdc++.h>
#include "messy.h"
using namespace std;
string pop[2];
int liczby[200];
void dodaj1(string s){
add_element(s);
// cout<<"D:"<<s<<'\n';
}
bool zapytaj1(string s){
bool czy = check_element(s);
// cout<<"Z:"<<s<<':'<<czy<<"\n";
return czy;
}
vector<int> restore_permutation(int n, int m, int k){
int i, w, j;
for(i=0;i<n;i++)pop[0]+='0';
for(i=0;i<n;i++)pop[1]+='0';
if(n==128)w=7;
if(n==32)w=5;
if(n==8)w=3;
for(i=0;i<w;i++){
for(j=0;j<n;j++){
if((j>>i)&1){
auto &pom = pop[!((j>>(i-1))&1)];
pom[j] = '1';
dodaj1(pom);
pom[j] = '0';
}
}
for(j=0;j<n;j++){
pop[0][j] = pop[1][j] = '0';
if((j>>i)&1)pop[1][j] = '1';
else pop[0][j] = '1';
}
}
compile_set();
for(i=0;i<w;i++){
for(j=0;j<n;j++){
string pom;
bool czy = (liczby[j]>>(i-1))&1;
for(int ij=0;ij<n;ij++)pom+='0'+((liczby[ij]>>(i-1))&1)^czy;
pom[j]='1';
liczby[j]+=(1<<i)*zapytaj1(pom);
}
}
vector<int>p;
for(i=0;i<n;i++)p.push_back(liczby[i]);
return(p);
}
컴파일 시 표준 에러 (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... |