Square Coins

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 9903    Accepted Submission(s): 6789

Problem Description
People
in Silverland use square coins. Not only they have square shapes but
also their values are square numbers. Coins with values of all square
numbers up to 289 (=17^2), i.e., 1-credit coins, 4-credit coins,
9-credit coins, ..., and 289-credit coins, are available in Silverland.
There are four combinations of coins to pay ten credits:

ten 1-credit coins,
one 4-credit coin and six 1-credit coins,
two 4-credit coins and two 1-credit coins, and
one 9-credit coin and one 1-credit coin.

Your mission is to count the number of ways to pay a given amount using coins of Silverland.

 
Input
The
input consists of lines each containing an integer meaning an amount to
be paid, followed by a line containing a zero. You may assume that all
the amounts are positive and less than 300.
 
Output
For
each of the given amount, one line containing a single integer
representing the number of combinations of coins should be output. No
other characters should appear in the output.
 
Sample Input
2
10
30
0
 
 
dp的完全是按照hdu1028的改的,套那个的感觉。
初始化要比1028难一点,不光要所有的都弄成1,因为这次的不是连续的,所有有的就没有递归上,但是后面的数不可能比前面的小,所以每次都加上一个 d[i][i]=d[i][a[j]];
#include<queue>
#include<math.h>
#include<stdio.h>
#include<string.h>
#include<string>
#include<iostream>
#include<algorithm>
using namespace std;
#define N 333
int a[],n,d[N][N]; int main()
{
for(int i=;i<=;i++)
a[i]=i*i;
for(int i=;i<=;i++)
for(int j=;j<=;j++)
d[i][j]=; for(int i=;i<=;i++)
{
for(int j=;j<=&&a[j]<=i;j++)
{
d[i][a[j]]=d[i][a[j-]]+d[i-a[j]][min(a[j],i-a[j])];
d[i][i]=d[i][a[j]];
}
}
int i;
while(cin>>i&&i)
{
cout<<d[i][a[(int)sqrt(i)] ]<<endl;
}
return ;
}
 
母函数下次弄

最新文章

  1. 3、C#面向对象:封装、继承、多态、String、集合、文件(下)
  2. JavaScript-永远点不到的小窗口
  3. 记录Android Studio项目提交到github上的出错处理
  4. js 日期
  5. Git教程(1)官网及官方中文教程
  6. poj 2299 Ultra-QuickSort (归并排序 求逆序数)
  7. WIN8+VS2013编写发布WCF之一(编写)
  8. DIV+CSS 网页布局之:三列布局
  9. Jackknife,Bootstraping, bagging, boosting, AdaBoosting, Rand forest 和 gradient boosting的区别
  10. jquery中使用offset()获得的div的left=0,top=0
  11. Docker环境下如何安装Zookeeper
  12. nginx负载均衡指令least_conn的真正含义
  13. H5键盘事件处理
  14. LG1081 开车旅行
  15. 火狐开发----如何快速的安装火狐XPI文件
  16. 049、准备overlay网络实验环境(2019-03-14 周四)
  17. GIMP使用笔记
  18. 如何查看centos系统cpu/内存使用情况
  19. sqoop操作之HDFS导出到ORACLE
  20. python learning2.py

热门文章

  1. 输入url后发生了什么
  2. luogu2146 [NOI2015]软件包管理器
  3. POJ-1743 Musical Theme,后缀数组+二分!
  4. 九度oj 题目1035:找出直系亲属
  5. iOS学习笔记13-网络(二)NSURLSession
  6. BZOJ 1008: [HNOI2008]越狱【组合】
  7. bzoj2748 [HAOI2012]音量调节 背包
  8. Nk 1430 Divisors(因子数与质因数)
  9. 栅格网络流(cogs 750)
  10. 标准C程序设计七---03