码迷,mamicode.com
首页 > 其他好文 > 详细

HDU-1028-Ignatius and the Princess III

时间:2014-11-25 23:17:08      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   for   问题   bs   ef   amp   

题目链接

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

标签:http   io   ar   sp   for   问题   bs   ef   amp   

原文地址:http://www.cnblogs.com/liudehao/p/4122065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!