# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
658354 | Zena_Hossam | 순열 (APIO22_perm) | C++17 | 14 ms | 1364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "perm.h"
//#include "grader.cpp"
#define ll long long
using namespace std;
std::vector<int> construct_permutation(long long k)
{
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
vector<pair<ll,int>>v;
vector<int>s;
long long l=1;
for(int i=0;i<100;i++)
{
v.push_back({l-1,i});
l*=2;
if(l-1>1e18)break;
}
ll p=k-2;k--;
while(1)
{
pair<ll,int>h={k,0};
int o=upper_bound(v.begin(),v.end(),h)-v.begin();
if(v.back().first<=k)o=v.size()-1;
while(v[o].first>k&&k)o--;
while(k>=v[o].first){
for(ll i=p-v[o].second+1;i<=p;i++){
s.push_back(i);
}
p-=v[o].second;
k-=v[o].first;}
if(k<=0)break;
}
for(int i=0;i<s.size();i++)
{
s[i]-=(p+1);
}
return s;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |