# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
579803 | peuch | 순열 (APIO22_perm) | C++17 | 1094 ms | 340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
unordered_map<long long, vector<int> > dp;
std::vector<int> construct_permutation(long long k)
{
if(k == 1) return vector<int> (0);
if(k == 2) return vector<int> (1);
if(!dp[k].empty()) return dp[k];
// printf("%lld\n", k);
for(long long i = sqrt(k) + 1; i > 1; i--){
if(!dp[k].empty()) break;
if(k % i != 0) continue;
// printf("Testing dividing %lld by %d\n", k, i);
vector<int> aux1 = construct_permutation(i);
vector<int> aux2 = construct_permutation(k / i);
if(dp[k].empty() || aux1.size() + aux2.size() < dp[k].size()){
dp[k].clear();
for(int i = 0; i < aux1.size(); i++)
dp[k].push_back(aux1[i]);
for(int i = 0; i < aux2.size(); i++)
dp[k].push_back(aux2[i] + aux1.size());
}
}
// printf("Ok\n");
if(dp[k].empty()){
dp[k] = construct_permutation(k - 1);
dp[k].insert(dp[k].begin(), dp[k].size());
}
// printf("%lld\n", k);
return dp[k];
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |