이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <vector>
#include "messy.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<int> restore_permutation(int n, int w, int r) {
string s;
for (int i = 0;i<n;++i){
s+='0';
}
for (int i = 0;i<n;++i){
s[i] = '1';
add_element(s);
}
compile_set();
vector<int>pos(n,-1);
string cur;
for (int i = 0;i<n;++i){
cur+='0';
}
for (int i = 0;i<n;++i){
int left = 0,right = n - 1,ps = -1;
while(left<=right){
int mid = (left + right)>>1;
string new_cur = cur;
for (int j = 0;j<=mid;++j){
new_cur[j] = '1';
}
if (check_element(new_cur)){
right = mid - 1;
ps = mid;
}
else{
left = mid + 1;
}
}
//cur_bit is in the region between 0...pos
//pos is not the last bit of the given bits of numbers
//
for (int j = 0;j<=ps;++j){
if (cur[j] == '1')continue;
cur[j] = '1';
if (check_element(cur)){
pos[i] = j;
break;
}
cur[j] = '0';
}
}
vector<int>inv(n);
for (int i = 0;i<n;++i){
inv[pos[i]] = i;
}
return inv;
}
# | 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... |