이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using pii = pair<int, int>;
#define pb push_back
#define ff first
#define ss second
vector<int> construct_permutation(ll k){
vector<int> p;
int cc = 0;
if (k % 2){
p.pb(1e9);
p.pb(cc++);
k = (k - 1) / 2 - 1;
}
else {
p.pb(cc++);
k = k / 2 - 1;
}
while (k > 0){
if (k % 2){
p.pb(cc++);
k = (k - 1) / 2;
}
else {
if ((k + 1) % 3 == 0){
p.pb(cc + 1);
p.pb(cc);
cc += 2;
k = (k + 1) / 3 - 1;
continue;
}
p.pb(1e9);
p.pb(cc++);
k = k / 2 - 1;
}
}
for (int i = (int) p.size() - 1; i >= 0; i--){
if (p[i] == 1e9){
p[i] = cc++;
}
}
return p;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |