首页 > 其他 > 详细

HDU 1398 Square Coins

时间:2017-08-14 23:09:14      阅读:294      评论:0      收藏:0      [点我收藏+]

http://acm.hdu.edu.cn/showproblem.php?pid=1398

大概像是01背包

#include<bits/stdc++.h>
using namespace std;
const int maxn = 400;
int dp[maxn];
int s[maxn];
void init()
{
    memset(dp,0,sizeof(dp));
}
int main ()
{
    int n;
    for(int i=1;i<=17;i++)
        s[i] = i*i;
    dp[0] =1;
    for(int i=1;i<=17;i++)
    {
            for(int j=s[i];j<=300;j++)
                dp[j] +=dp[j-s[i]];
    }
    while (~scanf("%d",&n) && n )
    {
        printf("%d\n",dp[n]);
    }
}

 

HDU 1398 Square Coins

原文:http://www.cnblogs.com/Draymonder/p/7360587.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!