# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
170587 | AlexLuchianov | Unscrambling a Messy Bug (IOI16_messy) | C++14 | 4 ms | 632 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include <set>
#include <iostream>
#include <fstream>
#include "messy.h"
int const lgmax = 8;
std::set<int> myset[1 + lgmax];
std::vector<int> restore_permutation(int n, int w, int r) {
int p = 0;
while((1 << p) < n)
p++;
std::vector<int> known;
//std::cout << p << '\n';
for(int i = 0; i < p; i++){
std::string s;
s.resize(n);
for(int j = 0; j < n; j++)
s[j] = '0';
for(int j = 0; j < known.size(); j++)
s[known[j]] = '1';
if(i == p - 1)
for(int j = 0; j < n; j++)
s[j] = '1';
for(int j = 0; j < n; j++)
if(0 < ((1 << i) & j)) {
if(s[j] == '0')
s[j] = '1';
else
s[j] = '0';
add_element(s);
//std::cout << i << " " << j << " " << s << '\n';
if(s[j] == '0')
s[j] = '1';
else
s[j] = '0';
known.push_back(j);
}
}
//std::cout << '\n';
compile_set();
known.clear();
for(int i = 0; i < p; i++){
std::string s;
s.resize(n);
for(int j = 0; j < n; j++)
s[j] = '0';
for(int j = 0; j < known.size(); j++)
s[known[j]] = '1';
if(i == p - 1)
for(int j = 0; j < n; j++)
s[j] = '1';
for(int j = 0; j < n; j++){
if(s[j] == '0')
s[j] = '1';
else
s[j] = '0';
//std::cout << i << " " << j << " " << s << " " << check_element(s) << '\n';
if(check_element(s) == 1) {
myset[i].insert(j);
known.push_back(j);
}
if(s[j] == '0')
s[j] = '1';
else
s[j] = '0';
}
}
std::vector<int> sol(n);
for(int i = 0; i < n; i++){
int number = 0;
for(int j = 0; j < p; j++)
if(myset[j].find(i) != myset[j].end())
number += (1 << j);
sol[i] = number;
}
return sol;
}
컴파일 시 표준 에러 (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... |