# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
993263 | thelegendary08 | 순열 (APIO22_perm) | C++17 | 7 ms | 1116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include<bits/stdc++.h>
#define vi vector<int>
#define f0r(i, n) for(int i = 0;i<n;i++)
#define ll long long int
#define pb push_back
using namespace std;
static long long MX = 1e18;
std::vector<int> construct_permutation(long long k)
{
k--;
vi ans;
vi nums;
vi nums2;
int ansl = 0;
ll cur;
for(int i = 59; i > 1; i--){
cur = (1LL << i) + (1LL << (i - 1)) - 1;
if(k > cur){
k -= cur;
ansl += i + 1;
nums2.pb(i);
}
}
for(int i = 59; i > 1; i--){
cur = (1LL << i) - 1;
if(k > cur){
k -= cur;
ansl += i;
nums.pb(i);
}
}
//for(auto u : nums)cout<<u<<' ';
//cout<<'\n';
//cout<<k<<'\n';
int curr = ansl - 1;
ansl += k - 1;
f0r(i, k){
ans.pb(ansl);
ansl--;
}
for(auto u : nums){
for(int i = curr - u + 1; i <= curr; i++)ans.pb(i);
curr -= u;
}
for(auto u : nums2){
for(int i = curr - u; i <= curr - 2; i++)ans.pb(i);
ans.pb(curr);
ans.pb(curr-1);
curr -= (u + 1);
}
//for(auto u : ans)cout<<u<<' ';
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |