Description

Farmer John goes to Dollar Days at The Cow Store and discovers an unlimited number of tools on sale. During his first visit, the tools are selling variously for $1, $2, and $3. Farmer John has exactly $5 to spend. He can buy 5 tools at $1 each or 1 tool at $3 and an additional 1 tool at $2. Of course, there are other combinations for a total of 5 different ways FJ can spend all his money on tools. Here they are:

        1 @ US$3 + 1 @ US$2

1 @ US$3 + 2 @ US$1

1 @ US$2 + 3 @ US$1

2 @ US$2 + 1 @ US$1

5 @ US$1

Write a program than will compute the number of ways FJ can spend N dollars (1 <= N <= 1000) at The Cow Store for tools on sale with a cost of $1..$K (1 <= K <= 100).

Input

A single line with two space-separated integers: N and K.

Output

A single line with a single integer that is the number of unique ways FJ can spend his money.

Sample Input

5 3

Sample Output

5

一看完全背包, 套了模板, 很遗憾wa了, 想了想,不明所以, 搜了下题解, 居然说是因为结果太大, 看看数据似乎是这样的, 据说是两位数存就可以, 结果写完提交,果断AC
 
#include <iostream>
#include <queue>
#include <cmath>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <stack>
#include <vector>
#include <algorithm> using namespace std; #define N 2100
#define met(a,b) (memset(a,b,sizeof(a)))
typedef long long LL; LL dp[N][]; int main()
{
int n, m; while(scanf("%d%d", &n, &m)!=EOF)
{
int i, j; met(dp, ); dp[][] = ;
for(i=; i<=m; i++)
for(j=i; j<=n; j++)
{
dp[j][] += dp[j-i][];
dp[j][] += dp[j-i][];
dp[j][] += dp[j][]/;
dp[j][] %= ;
} if(dp[n][]==)
printf("%I64d\n", dp[n][]);
else
{
printf("%I64d%015I64d\n", dp[n][], dp[n][]);
}
} return ;
}

参考http://www.cnblogs.com/kuangbin/archive/2012/09/20/2695165.html

最新文章

  1. 借助GitHub托管你的项目代码
  2. Windows phone应用开发[19]-RSA数据加密
  3. Codeforces Round #381 (Div. 2)A. Alyona and copybooks(dfs)
  4. 最全数据结构详述: List VS IEnumerable VS IQueryable VS ICollection VS IDictionary
  5. KMA &amp; ex_KMP---Revolving Digits
  6. struts2 radio标签 单选按钮
  7. CSS的单位及css3的calc()及line-height百分比
  8. hdu 2112 (最短路+map)
  9. 修改Eclipse的EasyExplore插件的键盘快捷键
  10. ADO和ADO.NET的区别
  11. Gas Station 解答
  12. Ext Store Proxy Ajax
  13. Reverse Integer - Palindrome Number - 简单模拟
  14. oracle database 12c R1 安装文档
  15. python_变量的命名规则
  16. 复习php的一些函数
  17. 关于Handler的理解,子线程不能更新UI的纠正和回调的思考
  18. Day-1: Python准备知识
  19. 【转】Spring Bean单例与线程安全
  20. 4.前端基于react,后端基于.net core2.0的开发之路(4) 前端打包,编译,路由,模型,服务

热门文章

  1. python 2.4 与 python 3.0 的比较
  2. Git 查看某个版本修改了哪些文件
  3. 【好文要转】HTTP图解(大牛必经之路)
  4. jQuery Mobile 表单基础
  5. Git查看、删除、重命名远程分支和tag(转)
  6. 把vim当做golang的IDE
  7. python出输出字符串方式:
  8. 读取xml文件报错:Invalid byte 2 of 2-byte UTF-8 sequence。
  9. JSP目录
  10. html table冻结列