이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> pii;
const int MAXN = 5e3 + 5;
#define all(x) x.begin(), x.end();
#define sz(x) (int)x.size()
#define mk make_pair
#define pb push_back
#define fr first
#define sc second
vector<int> construct_permutation(ll k){
vector<int> v;
for(ll i = 0, val = 2; val <= k; val *= 2, i++) v.pb(i);
k -= (1LL << sz(v));
for(ll i = 60; i >= 0; i--) {
if((1LL << i) <= k) {
k -= (1LL << i);
v.insert(v.begin() + i, sz(v));
}
}
return v;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |