母函数
他说少年如歌
现在不常看博客,有问题可通过qq联系,937035773.
展开
-
hdu 1709 The Balance
母函数做法 有点特殊 每个砝码个数只有一个 并且还要计算差 AC代码 #include #include #include #include using namespace std; int a[10001],b[10001]; int main() { int t; while(~scanf("%d",&t)) {原创 2016-04-26 10:11:59 · 241 阅读 · 0 评论 -
母函数算法入门
在数学中,某个序列的母函数(Generatingfunction,又称生成函数)是一种形式幂级数,其每一项的系数可以提供关于这个序列的信息。使用母函数解决问题的方法称为母函数方法。 母函数可分为很多种,包括普通母函数、指数母函数、L级数、贝尔级数和狄利克雷级数。对每个序列都可以写出以上每个类型的一个母函数。构造母函数的目的一般是为了解决某个特定的问题,因此选用何种母函数视乎序列本身的特性和问题的转载 2016-04-26 10:15:49 · 1021 阅读 · 0 评论 -
HDU 1085母函数模板题
给你三种硬币(一元,二元,五元)的个数 问你不能组成的数的最小值 直接套用母函数模板即可 不懂母函数的请先看看这篇文章 母函数介绍 AC代码: #include #include #include using namespace std; int a[10005],b[10005]; int f[4] = {0,1,2,5}; int main() {原创 2016-05-23 10:02:34 · 305 阅读 · 0 评论 -
hdu 2566 统计硬币
水题: 硬币的个数确定为n 所以直接暴力就可以了 #include int main() { int t; scanf("%d",&t); while(t--) { int n,m,ans = 0; scanf("%d%d",&n,&m); for(int i = 0; i n; i++)原创 2016-04-26 10:22:00 · 279 阅读 · 0 评论 -
HDU1398 母函数
Square Coins Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 10769 Accepted Submission(s): 7354 Problem Description People in Si原创 2016-05-23 10:47:45 · 263 阅读 · 0 评论 -
HDU 1171 母函数或者01背包变形
Big Event in HDU Time Limit: 10000/5000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 34449 Accepted Submission(s): 11946 Problem Description Nowada原创 2016-05-23 10:28:38 · 298 阅读 · 0 评论 -
hdu 2069 Coin Change(母函数)
题意:给你50 25 10 5 1硬币各一些 问你组成某个数的不同方案数 但是注意 硬币的个数不超过一百个 所以这题要控制硬币的个数 用二维数组控制 AC代码: #include #include #include using namespacestd; inta[10005][105],b[10005][105]; int f[6] ={0,1,5原创 2016-04-26 10:25:08 · 362 阅读 · 0 评论 -
HDU 1028 Ignatius and the Princess III(母函数)
Ignatius and the Princess III Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 20140 Accepted Submission(s): 14100 Problem Descripti原创 2017-03-04 20:24:39 · 227 阅读 · 0 评论