# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
983288 | Sir_Ahmed_Imran | 순열 (APIO22_perm) | C++17 | 1 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
///~~~LOTA~~~///
#include "perm.h"
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ld long double
#define append push_back
#define add insert
#define nl '\n'
#define ff first
#define ss second
#define pii pair<int,int>
#define pll pair<ll,ll>
#define all(x) (x).begin(),(x).end()
#define L0TA ios_base::sync_with_stdio(false);cin.tie(NULL);cout.tie(NULL)
#define terminator main
#define N 60
ll pwr[N];
vector<int> construct_permutation(ll n){
int m;
pwr[0]=1;
vector<int> u,v;
for(ll i=1;i<N;i++)
pwr[i]=pwr[i-1]*2LL;
for(int i=59;i>0;i--){
if(n<pwr[i]) continue;
n-=pwr[i];
if(v.empty()){
m=i;
for(int j=0;j<i;j++)
v.append(j);
continue;
}
u.append(v[m-i]);
for(int j=m-i;j<m;j++)
v[j]++;
}
if(n) u.append(v.back()+1);
reverse(all(u));
for(auto& i:v)
u.append(i);
return u;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |