이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define pb push_back
vector<int> construct_permutation(ll k){
int len = 1;
while((1ll << len) < k) len++;
vector<int> ans, tmp;
for(int i = 1; i < len; ++i){
ans.pb(2 * i);
}
k -= (1ll << (len - 1));
for(int cur = 2 * len - 1, pw = 0; cur >= 1; cur -= 2, pw++){
if(k & (1ll << pw)) tmp.pb(cur);
}
for(auto x:ans) tmp.pb(x);
swap(ans, tmp);
vector<int> ls = ans;
sort(ls.begin(), ls.end());
for(auto &x:ans){
x = lower_bound(ls.begin(), ls.end(), x) - ls.begin();
}
return ans;
}
/*
int main(){
int q; cin >> q;
while(q--){
int k; cin >> k;
vector<int> v = construct_permutation(k);
for(auto x:v) cout << x << ' ';
cout << '\n';
}
}
*/
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |