이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "messy.h"
using namespace std;
vector<int> restore_permutation(int n, int w, int r) {
string mask = string(8, '0');
for(int i=0; i<8; ++i) {
mask[i] = '1';
add_element(mask);
}
compile_set();
vector<int>p(n);
set<int>already;
for(int i=0; i<8; ++i) {
mask = string(8, '0');
for(int x : already) {
mask[x] = '1';
}
int new_pos = -1;
for(int j=0; j<8; ++j) if(mask[j]=='0') {
mask[j] = '1';
if(check_element(mask)) {
new_pos = j;
break;
}
mask[j] = '0';
}
p[i] = new_pos;
already.insert(new_pos);
}
return p;
}
# | 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... |