이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "perm.h"
#define pb push_back
#define all(a) (a).begin(), (a).end()
using namespace std;
typedef long long ll;
vector<int> construct_permutation(ll k) {
deque<int> q;
vector<int> v;
for(;k > 1;k >>= 1) {
if(k & 1) v.pb(0);
v.pb(1);
}
reverse(all(v));
int num = 0;
for(int i : v)
if(i) q.pb(num++);
else q.push_front(num++);
vector<int> p;
while(q.size()) p.pb(q.front()), q.pop_front();
return p;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |