이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
int pivot;
vector<int> rs;
void backtrack(long long k) {
if (!k)
return;
int pw2 = 1, cnt = 0;
while (pw2 * 2 - 1 <= k) {
pw2 *= 2;
cnt++;
}
for (int i = pivot - cnt + 1; i <= pivot; i++)
rs.push_back(i);
pivot -= cnt;
backtrack(k - pw2 + 1);
}
std::vector<int> construct_permutation(long long k) {
pivot = 1e9;
rs.clear();
backtrack(k - 1);
int minVal = *min_element(rs.begin(), rs.end());
// cout << minVal << '\n';
// for (int &x: rs)
// cout << x << ' ';
// cout << '\n';
for (int &x: rs)
x -= minVal;
return rs;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |