# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
955684 | Otalp | 순열 (APIO22_perm) | C++17 | 10 ms | 1372 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
vector<int> construct_permutation(ll k)
{
vector<int> ans;
ll h = k - 1;
vector<int> d;
ll ls = -1;
for(int i=60; i>=1; i--){
while(h >= (1ll << i) - 1){
d.pb(i);
ls += i;
h -= (1ll << i) - 1;
}
}
if(h > 0) d.pb(1), ls ++;
for(auto x: d){
int l=ls-x+1, r=ls;
ls -= x;
for(int i=l; i<=r; i++){
ans.pb(i);
}
}
for(int i=0; i<d.size(); i++){
//cout<<d[i]<<' ';
}
//cout<<'\n';
for(int i=0; i<ans.size(); i++){
//cout<<ans[i]<<' ';
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |