이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#ifdef NYAOWO
#include "grader.cpp"
#endif
#include <bits/stdc++.h>
#define For(i, a, b) for(int i = a; i <= b; i++)
#define Forr(i, a, b) for(int i = a; i >= b; i--)
#define F first
#define S second
#define sz(x) ((int)x.size())
#define all(x) x.begin(), x.end()
#define eb emplace_back
#define int LL
using namespace std;
using LL = long long;
using pii = pair<int, int>;
std::vector<int32_t> construct_permutation(long long k) {
vector<int32_t> a, b;
int cur = 0, p = 0;
while(k > (1ll << p)) {
if(k & (1ll << p)) {
b.eb(cur); cur++;
k -= (1ll << p);
}
p++;
if(k) {
a.eb(cur); cur++;
}
}
reverse(all(b));
a.insert(a.end(), all(b));
for(auto &i:a) cerr << i << " ";
cerr << "\n";
return a;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |