# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
852794 | adhityamv | 순열 (APIO22_perm) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
vector<int> construct_permutation(ll k){
ll pow2[60];
pow2[0]=1LL;
for(int i=1;i<60;i++) pow2[i]=2LL*pow2[i-1];
vector<int> bnry;
int e=59;
while(pow2[e]>k) e--;
while(e>=0){
if(k>pow2[e]){
k-=pow2[e];
bnry.push_back(1);
} else bnry.push_back(0);
e--;
}
int mn=0;
int mx=0;
vector<int> ans;
as.push_back(0);
int m=(int) bnry.size();
for(int i=1;i<m;i++){
if(bnry[i]==0){
ans.push_back(mx+1);
mx++;
} else{
ans.push_back(mn-1);
mn--;
ans.push_back(mx);
mx++;
}
}
int l=ans.size();
for(int i=0;i<l;i++){
ans[i]-=(mn);
}
return ans;
}