Description
假设有从
能够被 整除 能够被 整除
给你一个整数
Constraints
Solution
状压DP,用
就凭感觉写的方案数,我也不知道为啥能AC
Code
class Solution {
public:
int countArrangement(int n) {
int dp[1<<15];
memset(dp, 0, sizeof dp);
dp[0] = 1;
for(int i = 1; i < (1<<n); ++i) {
int cnt = 0;
for(int t = i; t; t -= t&-t) cnt++;
for(int j = 0; j < n; ++j) {
if((i>>j & 1) && ((j+1) % cnt == 0 || cnt % (j+1) == 0)) {
dp[i] += dp[i^(1<<j)];
}
}
}
return dp[(1<<n)-1];
}
};