이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
using namespace std;
vector<int> construct_permutation(long long k){
vector<int> a;
while((1ll<<a.size()) <= k) a.push_back(a.size());
a.pop_back();
k -= 1LL<<a.size();
if(k > 0){
int bt = 60;
while(!((k >> bt)&1)) --bt;
for(int &x:a) if(x >= bt) ++ x;
a.push_back(bt);
k -= 1LL<<bt --;
while(bt >= 0){
if(bt > 0 && (k>>(bt-1)) == 3){
--bt;
for(int &x:a) if(x >= bt) ++ x;
a.insert(a.end() - 2, bt);
k -= 3LL<<bt--;
}
else if((k >> bt) == 1){
for(int &x:a) if(x >= bt) ++x;
a.push_back(bt);
k -= 1LL<<bt--;
}
else bt --;
}
}
return a;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |