DP:Sumsets(POJ 2229)

                 

                 数的集合问题

  题目大意:给定你一个整数m,你只能用2的k次幂来组合这个数,问你有多少种组合方式?

  这一题一看,天啦太简单了,完全背包?是不是?

  不过的确这一题可以用完全背包来想,但是交题绝对是TLE,如果真的是完全背包的做法那我就不用等那么多天再发这个坑,这一题的确要用到点奇妙的思想。

  首先,我们忽略了这一题的最重要的一个条件,我们使用的数就是2次幂的,那么2次幂的数可以做什么呢?这就是一个数学问题了

  不过不要怕,这个数学问题也很好想,

    首先:任何一个奇数一定有1来组成,推论:任何偶数都可以只由除了1的数组成

    其次,任何一个偶数都可以由一个数左移1来得到(参考二进制)

  下面我们就用这两个数学结论来思考怎么简化递推。

  回到问题上来,完全背包会TLE的原因是出在在第二个循环的时候对j进行了过多的枚举,那么我们在用这两个结论的时候必须避开这一点,最好一步到位,所以我们必须把个数全部压在前一次的情况上,那么我们可首先用结论1,对于任何一个奇数,我们都可以用上一个偶数+1(组合数不变,因为只能加这个1),且这个集合不能由其他集合直接得到,那么我们就得到第一个递推公式

   dp[j]=dp[j-1]  当j=奇数

  现在用到第二个结论,因为我们的偶数可以从奇数得到,也可以从偶数得到,那么可以第一部分可以从dp[j-1]得到,另外一个部分就要思考结论2,因为我们只是左移,组合数是不变的,所以我们还可以从dp[j>>1]中得到另一部分的组合数,这样就避开了一个一个查找枚举i的背包了

  所以综上,状态转移方程为:

    dp[i]=dp[i-1]  当i是奇数

    dp[i]=dp[i-1]+dp[i>>1]  当i是偶数  

    (注意这一题只显示9个数字)

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 #define M 1000000000
 4
 5 long long Combinatories[1000001];
 6
 7 int main(void)//这一题不能用完全背包,会超时
 8 {
 9     int N, i;
10     Combinatories[1] = 1;//这个地方要设置成1
11
12     for (i = 2; i < 1000001; i++)
13     {
14         if (i % 2 == 1)
15             Combinatories[i] = Combinatories[i - 1];
16         else
17             Combinatories[i] = Combinatories[i - 1] + Combinatories[i >> 1];
18         Combinatories[i] %= M;
19     }
20
21     while (~scanf("%d", &N))
22         printf("%d\n", Combinatories[N] % M);
23
24     return 0;
25 }
时间: 2024-10-17 03:44:55

DP:Sumsets(POJ 2229)的相关文章

poj 2229 【完全背包dp】【递推dp】

poj 2229 Sumsets Time Limit: 2000MS   Memory Limit: 200000K Total Submissions: 21281   Accepted: 8281 Description Farmer John commanded his cows to search for different sets of numbers that sum to a given number. The cows use only numbers that are an

【插头DP】 POJ 1739 Tony&#39;s Tour

通道:http://poj.org/problem?id=1739 题意:左下角走到右下角路径数,单回路.做法就是我们新添2行后寻找回路就可以啦 . 代码: 1 #include <cstdio> 2 #include <cstring> 3 #include <algorithm> 4 5 using namespace std; 6 7 const int MAX_N = 13; 8 const int MAX_M = 13; 9 const int HASH =

POJ 2229 Sumsets(简单DP)

Farmer John commanded his cows to search for different sets of numbers that sum to a given number. The cows use only numbers that are an integer power of 2. Here are the possible sets of numbers that sum to 7: 1) 1+1+1+1+1+1+1 2) 1+1+1+1+1+2 3) 1+1+1

poj 2229 Sumsets(dp 或 数学)

Description Farmer John commanded his cows to search for different sets of numbers that sum to a given number. The cows use only numbers that are an integer power of 2. Here are the possible sets of numbers that sum to 7: 1) 1+1+1+1+1+1+1 2) 1+1+1+1+

POJ 2229(Sumsets)

题目链接:http://poj.org/problem?id=2229 思路:“动态规划”问题 只需要列三个连续数字N即可发现:1.N为奇数时,f(n)=f(n-1)    2.N为偶数时,f(n)=f(n-1)+f(n/2)   因为此时N-1为基数,N-1情况的每一行第一个数一定是1,所以加上一个1时,就相当于在前面直接加一个1或者与 “后面” 的1组成2. ac代码: #include <iostream> #include <algorithm> #include <

poj 2229 Sumsets 完全背包求方案总数

Sumsets Description Farmer John commanded his cows to search for different sets of numbers that sum to a given number. The cows use only numbers that are an integer power of 2. Here are the possible sets of numbers that sum to 7: 1) 1+1+1+1+1+1+1 2)

POJ 2229 Sumsets (递推&amp;整数划分变形)

http://poj.org/problem?id=2229 思路:假设加数按从小到大的顺序.当n为奇数时,第一个数必须为1,此时f(n)=f(n-1):当n为偶数时,分两种情况讨论,若第一个数为1,则f(n)=f(n-1),若第一个数不为奇数,则所有数都不为奇数,提出一个公因子2出来,就是f(n/2),所以,f(n)=f(n-1)+f(n/2) 完整代码: /*63ms,4300KB*/ #include<cstdio> const int mod = 1e9; const int maxn

POJ 2229 Sumsets(递推,思考)

/* n = 7 1) 1+1+1+1+1+1+1 2) 1+1+1+1+1+2 3) 1+1+1+2+2 4) 1+1+1+4 5) 1+2+2+2 6) 1+2+4 */ /* 若i为偶数 : 若有 1 ,至少有两个 ---->f[i-2]的情况+两个1, 若没有1 , 将偶数分解/2-----> f[i/2]; 则dp[i] = dp[i / 2] + dp[i-2] 若i为奇数: 必定有 1, dp[i] = 减去1的序列,加上1 则dp[i] = dp[i – 1] */ 1 #in

POJ 2229 计数DP

dp[i]代表是数字i的最多组合数如果i是一个奇数,i的任意一个组合都包含1,所以dp[i] = dp[i-1] 如果i是一个偶数,分两种情况讨论,一种是序列中包含1,因此dp[i]=dp[i-1]一种是序列不包含1,那么序列中的数都是2的倍数,把他们都除以2,序列与i/2序列相同,得到dp[i]=dp[i-1]+dp[i>>1] 1 #include <cstdio> 2 using namespace std; 3 int dp[1000000 + 10]; 4 int mai