Ant Counting POJ 3046(计数dp)

原题

题目链接

题目分析

计数dp题,感觉其实也可以用组合数学做,但我太菜了,推不出通用公式.dp可以定义dp[i][j]为前i种选j个蚂蚁有多少种选法,然后递推公式如下,其中c[i]表示第i种的数量,

dp[i][j]=Σ(min(j,c[i]),k=0)dp[i-1][j-k].可以化简一下,dp[i][j]=∑(c[i],k=0)dp[i-1][j-1-k]+dp[i-1][j]-dp[i-1][j-1-c[i]],最后答案就是dp[t][s]+dp[t][s+1]+...+dp[t][b].然后这道题要状压,也就是i只有i和i-1,所以第一维可以压缩成i=1和i=0.

代码

 1 #include <iostream>
 2 #include <algorithm>
 3 #include <utility>
 4 #include <cstdio>
 5 #include <cmath>
 6 #include <cstring>
 7 #include <string>
 8 #include <vector>
 9 #include <stack>
10 #include <queue>
11 #include <map>
12 #include <set>
13
14 using namespace std;
15 typedef long long LL;
16 const int INF_INT=0x3f3f3f3f;
17 const LL INF_LL=0x3f3f3f3f3f3f3f3f;
18
19 const int mod=1e6;
20 int num[2000];
21 LL dp[2][200000];
22
23 int main()
24 {
25 //    freopen("black.in","r",stdin);
26 //    freopen("black.out","w",stdout);
27     int t,a,s,b;
28     cin>>t>>a>>s>>b;
29     for(int i=0;i<a;i++)
30     {
31         int x;
32         scanf("%d",&x);
33         num[x]++;
34     }
35     int total=0;
36     for(int i=1;i<=t;i++)
37     {
38         total+=num[i];
39         int now=i&1,last=!now;
40         dp[now][0]=dp[last][0]=1;
41         for(int j=1;j<=total;j++)
42         {
43             if(j-1-num[i]>=0) dp[now][j]=(dp[now][j-1]+dp[last][j]-dp[last][j-1-num[i]])%mod;
44             else dp[now][j]=(dp[now][j-1]+dp[last][j])%mod;
45         }
46     }
47     LL ans=0;
48     int res=t&1;
49     for(int i=s;i<=b;i++) ans=(ans+dp[res][i])%mod;
50     cout<<(ans+mod)%mod<<endl;
51     return 0;
52 }

原文地址:https://www.cnblogs.com/VBEL/p/11407147.html

时间: 2024-10-12 17:34:54

Ant Counting POJ 3046(计数dp)的相关文章

Ant Counting (poj 3046 分组背包)

Language: Default Ant Counting Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 3142   Accepted: 1246 Description Bessie was poking around the ant hill one day watching the ants march to and fro while gathering food. She realized that man

POJ 3046 Ant Counting ( 多重集组合数 &amp;&amp; 经典DP )

题意 : 有 n 种蚂蚁,第 i 种蚂蚁有ai个,一共有 A 个蚂蚁.不同类别的蚂蚁可以相互区分,但同种类别的蚂蚁不能相互区别.从这些蚂蚁中分别取出S,S+1...B个,一共有多少种取法. 分析 :  实际就是要解决 => 从 n 种物品中取出 m 个有多少种取法 ( 同种无法区分 ) 计数问题的 DP 定义必须保证不重复计数 这里定义 dp[i+1][j] => 从前 i 种物品中取出 j 个的组合数 根据定义为了从前 i 种物品中取出 j 个,可以从前 i-1 中取出 j-k 个并从 i

POJ 1037 (计数 + DP) 一个美妙的栅栏

这道题总算勉勉强强看懂了,DP和计数都很不好想 DP部分: 称i根木棒的合法方案集合为S(i),第二根木棒比第一根长的方案称作UP方案,反之叫做DOWN方案 C[i][k][DOWN] 是S(i)中以第k短(而不是长度为k)的木棒打头的DOWN方案数. 假设S(i)中第一根木棒长为x,那么构成合法的方案数有两类: S(i - 1)中第一根木棒比x长的DOWN方案 S(i - 1)中第一根木棒比x短的UP方案 有如下递推关系: C[i][k][UP] = ∑ C[i-1][M][DOWN]M =

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

poj 3046 Ant Counting 多项式乘法解可重组合数

题意: 裸的求可重组合数. 分析: 多项式乘法求系数的应用啊,不用dp. 代码: //poj 3046 //sep9 #include <iostream> using namespace std; const int maxN=1024; const int maxL=100024; const int mod=1000000; int num[maxN]; int coef[maxL]; int tmp[maxL]; int l1; void mul(int l2) { for(int i

bzoj2023[Usaco2005 Nov]Ant Counting 数蚂蚁*&amp;&amp;bzoj1630[Usaco2007 Demo]Ant Counting*

bzoj2023[Usaco2005 Nov]Ant Counting 数蚂蚁&&bzoj1630[Usaco2007 Demo]Ant Counting 题意: t个族群,每个族群有ni只蚂蚁,同族群蚂蚁没有区别.问从所有蚂蚁中选出s到b只蚂蚁有多少方案.t≤1000,ni≤100. 题解: dp,f[i][j]表示考虑第i个族群,剩下j只蚂蚁没选择.则f[i][j]=sum(f[i-1][j-k]),k=0..min(j,n[i]).然而O(n^3)会超时,注意到可以计算f[i-1][

BZOJ2023: [Usaco2005 Nov]Ant Counting 数蚂蚁

2023: [Usaco2005 Nov]Ant Counting 数蚂蚁 Time Limit: 4 Sec  Memory Limit: 64 MBSubmit: 56  Solved: 16[Submit][Status] Description 有一天,贝茜无聊地坐在蚂蚁洞前看蚂蚁们进进出出地搬运食物.很快贝茜发现有些蚂蚁长得几乎一模一样,于是她认为那些蚂蚁是兄弟,也就是说它们是同一个家族里的成员.她也发现整个蚂蚁群里有时只有一只出来觅食,有时是几只,有时干脆整个蚁群一起出来.这样一来,

1630/2023: [Usaco2005 Nov]Ant Counting 数蚂蚁

2023: [Usaco2005 Nov]Ant Counting 数蚂蚁 Time Limit: 4 Sec  Memory Limit: 64 MBSubmit: 85  Solved: 40[Submit][Status][Discuss] Description 有一天,贝茜无聊地坐在蚂蚁洞前看蚂蚁们进进出出地搬运食物.很快贝茜发现有些蚂蚁长得几乎一模一样,于是她认为那些蚂蚁是兄弟,也就是说它们是同一个家族里的成员.她也发现整个蚂蚁群里有时只有一只出来觅食,有时是几只,有时干脆整个蚁群一

POJ3046 Ant Counting 【母函数】

Ant Counting Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 2924   Accepted: 1170 Description Bessie was poking around the ant hill one day watching the ants march to and fro while gathering food. She realized that many of the ants were