HDU 4345 Permutation dp

时间:2022-09-10 15:50:13

Permutation

Problem Description
There is an arrangement of N numbers and a permutation relation that alter one arrangement into another.
For example, when N equals to 6 the arrangement is 123456 at first. The replacement relation is 312546 (indicate 1->2, 2->3, 3->1, 4->5, 5->4, 6->6, the relation is also an arrangement distinctly).
After the first permutation, the arrangement will be 312546. And then it will be 231456.
In this permutation relation (312546), the arrangement will be altered into the order 312546, 231456, 123546, 312456, 231546 and it will always go back to the beginning, so the length of the loop section of this permutation relation equals to 6.
Your task is to calculate how many kinds of the length of this loop section in any permutation relations.
 
Input
Input contains multiple test cases. In each test cases the input only contains one integer indicates N. For all test cases, N<=1000.
 
Output
For each test case, output only one integer indicates the amount the length of the loop section in any permutation relations.
 
Sample Input
1
2
3
10
Sample Output
1
2
3
16
 
题意:
    有N个元素的一个集合经过K次置换能变回原来的集合,求k的方案数。
    例如:n=10,
    有如下方案:1,2,3,4,5,6,7,8,9,2*5,4*3,2*7,2*9,3*5,4*5,3*7;  一共16种
题解:
   不难发现,就是求每个置换集合的lcm.
   我们可以用dp来求解:
   dp[n][i]:表示前i种质数表示的数和为n的ways
   dp[n][i]=dp[n][i-1]+dp[n-j*prim[i]]][i]        j∈(0,1,2......n/prim[i]); 
 
 
///
#include <cstdio>
#include <cmath>
#include <cstring>
#include <ctime>
#include <iostream>
#include <algorithm>
#include <set>
#include <vector>
#include <queue>
#include <typeinfo>
#include <map>
typedef __int64 ll;
using namespace std;
#define inf 10000000
inline ll read()
{
ll x=,f=;
char ch=getchar();
while(ch<''||ch>'')
{
if(ch=='-')f=-;
ch=getchar();
}
while(ch>=''&&ch<='')
{
x=x*+ch-'';
ch=getchar();
}
return x*f;
}
int gcd(int a,int b)
{
if(b==)return a;
return gcd(b,a%b);
}
//***************************************************************
ll dp[][];
ll prim[];
ll hashs[];
ll cnt;
ll dfs(ll n,ll p)
{
if(dp[n][p])return dp[n][p];
if(n<prim[p])
{
dp[n][p]=;
return ;
}
dp[n][p]=dfs(n,p+);
ll tmp=prim[p];
while(tmp<=n)
{
dp[n][p]+=dfs(n-tmp,p+);
tmp*=prim[p];
}
return dp[n][p]; }
int main()
{ll n;
cnt=;
for(ll i=;i<=;i++)
{
if(hashs[i]==)
{
prim[cnt++]=i;
for(ll j=i+i;j<=;j+=i)hashs[j]=;
} }
memset(dp,,sizeof(dp));
while(scanf("%I64d",&n)!=EOF){
printf("%I64d\n",dfs(n,));
}
return ;
}

代码狗

HDU 4345 Permutation dp的更多相关文章

  1. hdu 4345 Permutation 记忆化搜索

    思路:实际上求的是和小于等于n的质数的种类数!!! 代码如下: #include<iostream> #include<stdio.h> #include<algorit ...

  2. hdu 4123 树形DP&plus;RMQ

    http://acm.hdu.edu.cn/showproblem.php? pid=4123 Problem Description Bob wants to hold a race to enco ...

  3. hdu 4507 数位dp(求和,求平方和)

    http://acm.hdu.edu.cn/showproblem.php?pid=4507 Problem Description 单身! 依旧单身! 吉哥依旧单身! DS级码农吉哥依旧单身! 所以 ...

  4. hdu 3709 数字dp(小思)

    http://acm.hdu.edu.cn/showproblem.php?pid=3709 Problem Description A balanced number is a non-negati ...

  5. hdu 4352 数位dp &plus; 状态压缩

    XHXJ's LIS Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total ...

  6. hdu 4283 区间dp

    You Are the One Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)T ...

  7. HDU 2829 区间DP &amp&semi; 前缀和优化 &amp&semi; 四边形不等式优化

    HDU 2829 区间DP & 前缀和优化 & 四边形不等式优化 n个节点n-1条线性边,炸掉M条边也就是分为m+1个区间 问你各个区间的总策略值最少的炸法 就题目本身而言,中规中矩的 ...

  8. HDOJ&lpar;HDU&rpar;&period;2844 Coins &lpar;DP 多重背包&plus;二进制优化&rpar;

    HDOJ(HDU).2844 Coins (DP 多重背包+二进制优化) 题意分析 先把每种硬币按照二进制拆分好,然后做01背包即可.需要注意的是本题只需要求解可以凑出几种金钱的价格,而不需要输出种数 ...

  9. HDOJ&lpar;HDU&rpar;&period;1059 Dividing&lpar;DP 多重背包&plus;二进制优化&rpar;

    HDOJ(HDU).1059 Dividing(DP 多重背包+二进制优化) 题意分析 给出一系列的石头的数量,然后问石头能否被平分成为价值相等的2份.首先可以确定的是如果石头的价值总和为奇数的话,那 ...

随机推荐

  1. jQuery 事件方法

    事件方法触发器或添加一个函数到被选元素的事件处理程序. 下面的表格列出了所有用于处理事件的 jQuery 方法. 方法 描述 bind() 向匹配元素附加一个或更多事件处理器 blur() 触发.或将 ...

  2. Android之Inflate&lpar;&rpar;

      Inflate()作用就是将xml定义的一个布局找出来,但仅仅是找出来而且隐藏的,没有找到的同时并显示功能.最近做的一个项目就是这一点让我迷茫了好几天. Android上还有一个与Inflate( ...

  3. 去除包裹的a标签

    <div id="test">  <a href="http://www.cnblogs.com">Link 1</a>   ...

  4. 让网站变灰的CSS代码(支持IE、FIREFOX和CHROME)

    方法1:支持IE <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xht ...

  5. &period;net core 11

  6. android 1&period;6 launcher研究之自定义ViewGroup &lpar;转 2011&period;06&period;03(二)——— android 1&period;6 launcher研究之自定义ViewGroup &rpar;

    2011.06.03(2)——— android 1.6 launcher研究之自定义ViewGroup2011.06.03(2)——— android 1.6 launcher研究之自定义ViewG ...

  7. vue安装之后的报错处理---chromedriver&commat;2&period;35&period;0 install&colon; &grave;node install&period;js&grave;

    报错:chromedriver@2.35.0 install: `node install.js` 这个错误的解决方法就是在你创建的项目目录,比如你创建的项目叫myVue,然后你就要在myVue这个目 ...

  8. javascript数组的属性、方法和清空-最全!!!&lpar;必看&rpar;

    今天经理要我从新看一遍js,当我再看<精通js和jquery>这本书时,发现关于数组的这章节讲的很少,于是想自己总结一下数组的常用方法. 定义数组: var arr = new Array ...

  9. C&num; XML文件读取

    using System.Collections; using System.Collections.Generic; using System.IO; using System.Text; usin ...

  10. CentOS6&period;8单独编译安装PHP gd库扩展

    # PHP-GD安装 #在安装之前可以先更新一下yum源,可以使用国内的阿里云源 yum -y install libjpeg-turbo-devel yum -y install freetype- ...