이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define sz size()
#define pb push_back
#define lb lower_bound
#define all(x) x.begin(),x.end()
vector<int> construct_permutation(ll k){
int bit=64-__builtin_clzll(k);
vector<double> ans;
bool flag=false;
while(bit>0){
bit-=2;
if(bit==-1){
ans.pb(100);
if(k&1)ans.pb(-100);
}
else{
int val=(k>>bit)&3;
if(ans.empty()){
if(val==2) ans.pb(0);
else ans={1,0},flag=true;
continue;
}
if(val==0){
ans.pb(100);
ans.pb(101);
}
else if(val==1){
ans.pb(100);
ans.pb(101);
ans.pb(-100);
flag=true;
}
else if(val==2){
ans.pb(100);
ans.pb(-100);
ans.pb(101);
flag=true;
}
else{
if(!flag){
ans.pb(100);
ans.pb(-100);
ans.pb(101);
ans.pb(-101);
flag=true;
}
else{
ans.pb(100);
ans.pb(101);
ans.pb(1.5);
}
}
}
vector<double> uni(all(ans));
sort(all(uni));
for(auto &i:ans)i=lb(all(uni),i)-uni.begin();
}
return vector<int> (all(ans));
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |