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

HDU 1398 Square Coins

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

标签:ble   ems   std   ons   clu   mem   size   bit   http   

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

标签:ble   ems   std   ons   clu   mem   size   bit   http   

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

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