이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "perm.h"
#define int long long
using namespace std;
vector<int32_t> construct_permutation(int k) {
deque<int> ans;
k--;
while (k > 0) {
if (1LL & k) {
ans.push_back(0);
k = (k >> 1LL);
} else {
ans.push_back(1);
k--;
}
}
int curr = 0;
int t = ans.size();
vector<int32_t> tans(t);
for (int i = 0; i < t; i++) {
if (ans[i] == 0) tans[i] = (curr++);
}
for (int i = t - 1; i >= 0; i--) {
if (ans[i] == 1) tans[i] = (curr++);
}
//for (auto u : tans) cout << u << " ";
//cout << "\n";
return tans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |