이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
_ _ __ _ _ _ _ _ _
|a ||t ||o d | |o |
| __ _| | _ | __| _ |
| __ |/_ | __ /__\ / _\|
**/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
vector <int> construct_permutation (ll k) {
int bits = 63 - __builtin_clzll(k);
int len = bits + __builtin_popcountll(k) - 1;
if (true) {
vector <int> p;
int l = 0, r = len - 1;
for (int e = 0; e < bits; e++) {
if ((k >> e) & 1) {
p.push_back(r--);
}
p.push_back(l++);
}
return p;
} else {
vector <int> p = construct_permutation(k / 3);
int len = (int) p.size();
vector <int> q;
for (int i = len + k % 3 + 1; i > len + 1; i--) {
q.push_back(i);
}
for (int x : p) {
q.push_back(x);
}
q.push_back(len + 1);
q.push_back(len);
return q;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |