This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
int cur;
vector<int> ans;
void construct(long long k) {
if (k > 1) {
if (k % 2 == 1) {
construct(k - 1);
ans.insert(ans.begin(), cur);
cur ++;
}
else {
construct(k / 2);
ans.push_back(cur);
cur ++;
}
}
}
vector<int> construct_permutation(long long k)
{
cur = 0;
ans.clear();
construct(k);
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |