이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "perm.h"
#include<bits/stdc++.h>
using namespace std;
const long long magic = 1000;
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 %lld\n", k, (long long)sqrt(k) + 1);
// printf("%lld\n", k);
for(long long i = 2; i * i <= min(k, magic); i++){
// printf("%lld\n", 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);
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) 메시지
perm.cpp: In function 'std::vector<int> construct_permutation(long long int)':
perm.cpp:22:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
22 | for(int i = 0; i < aux1.size(); i++)
| ~~^~~~~~~~~~~~~
perm.cpp:24:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
24 | for(int i = 0; i < aux2.size(); i++)
| ~~^~~~~~~~~~~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |