이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
namespace {
vector<int> primes = {2, 3, 5, 7};
deque<int> q;
int lim;
void mult(int x){
if (x == 7){
q.push_back(lim + 3);
q.push_back(lim + 1);
q.push_back(lim);
q.push_back(lim + 2);
lim += 4;
return;
}
else if (x == 5){
q.push_back(lim + 2);
q.push_back(lim);
q.push_back(lim + 1);
lim += 3;
return;
}
for (int i = lim + x - 2; i >= lim; i--){
q.push_back(i);
}
lim += x - 1;
}
void add1(){
q.push_front(lim++);
}
void solve(ll k){
if (k == 1) return;
for (int i = 0; i < (int)primes.size(); i++){
if (k % primes[i] == 0){
solve(k / primes[i]);
mult(primes[i]);
return;
}
}
solve(k - 1);
add1();
return;
}
}
vector<int> construct_permutation(ll k){
lim = 0;
solve(k);
vector<int> v;
while (!q.empty()){
v.push_back(q.front());
q.pop_front();
}
return v;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |