首页 > 代码库 > HDU-1028-Ignatius and the Princess III
HDU-1028-Ignatius and the Princess III
题目链接
http://acm.hdu.edu.cn/showproblem.php?pid=1028
dp 就是背包的硬币问题。可以类似 HDU 1284
#include<stdio.h>
#include<string.h>
int main(void)
{
int i,j,k,n;
int dp[125];
memset(dp,0,sizeof(dp));
dp[0]=1;
for(i=1;i<=120;i++)
{
for(j=i;j<=120;j++)
{
dp[j]=dp[j]+dp[j-i];
}
}
while(scanf("%d",&n)==1)
{
printf("%d\n",dp[n]);
}
return 0;
}
HDU-1028-Ignatius and the Princess III
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。