이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define pb push_back
#define all(a) begin(a), end(a)
vector<int> construct_permutation(ll n)
{
vector<double> v; v.clear();
vector<int> A,D; A.clear(); D.clear();
while(n>0) D.pb(n%4),n/=4;
reverse(all(D));
int cnt = 0; int tot=0, lol=0, xd = -1;
double ll = 1.95;
for(auto u : D){
if(!cnt){
if(u==2) v.pb(0),tot=1;
else if(u==3) v.pb(1), v.pb(0),tot=2, lol=1;
cnt = 1;
}
else{
if(u==0) v.pb(tot++), v.pb(tot++);
else if(u==1) v.pb(tot++), v.pb(tot++), v.pb(xd--);
else if(u==2) v.pb(tot++), v.pb(xd--), v.pb(tot++);
else if(lol) v.pb(tot++), v.pb(tot++), v.pb(ll), ll-=0.05;
else v.pb(tot++), v.pb(xd--), v.pb(tot++), v.pb(xd--), lol=1;
}
}
auto w = v; sort(all(w));
for(auto u : v) A.pb(lower_bound(all(w),u)-begin(w));
return A;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |