# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
862485 | JakobZorz | Permutation (APIO22_perm) | C++17 | 2 ms | 524 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<iostream>
#include"perm.h"
using namespace std;
typedef long long ll;
vector<int>construct_permutation(ll k){
if(k==1)
return {};
if(k==2)
return {0};
for(int p:{2,3,5,7,11,13,17,19,23}){
if(k%p==0&&p<k){
auto a=construct_permutation(p);
auto b=construct_permutation(k/p);
int s=(int)a.size();
for(int i:b)
a.push_back(i+s);
return a;
}
}
auto a=construct_permutation(k/2);
a.push_back((int)a.size());
a.insert(a.begin(),(int)a.size());
return a;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |