이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "perm.h"
// #include "grader.cpp"
using namespace std;
using ll = long long;
vector<int> construct_permutation(ll k) {
k--;
int sm = -1;
vector<int> v;
while (k) {
int x = __lg(k + 1);
sm += x;
v.push_back(x);
k -= (1LL << x) - 1;
}
vector<int> ans;
for (int i = 0; i < (int)v.size(); i++) {
for (int j = sm - v[i] + 1; j <= sm; j++) {
ans.push_back(j);
}
sm -= v[i];
}
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |