山东省第七届 ACM 省赛 Feed the monkey (dp)

网友投稿 282 2022-08-30

山东省第七届 ACM 省赛 Feed the monkey (dp)

Problem Description

Alice has a monkey, she must feed fruit to the monkey every day.She has three kinds of fruits, bananas, peaches and apples. Every day, she chooses one in three, and pick one of this to feed the monkey. But the monkey is picky, it doesn’t want bananas for more than D1 consecutive days, peaches for more than D2 consecutive days, or apples for more than D3 consecutive days. Now Alice has N1 bananas, N2 peaches and N3 apples, please help her calculate the number of schemes to feed the monkey.

Input

Multiple test cases. The first line contains an integer T (T<=20), indicating the number of test case.Each test case is a line containing 6 integers N1, N2, N3, D1, D2, D3 (N1, N2, N3, D1, D2, D3<=50).

Output

One line per case. The number of schemes to feed the monkey during (N1+N2+N3) days.The answer is too large so you should mod 1000000007.

Example Input

12 1 1 1 1 1

Example Output

6

题意

给出三种水果以及每种水果不能连续的数量,求总共有多少种组合的方式。

思路

​​dp[a][b][c][k]​​​ 代表当前剩余第一种水果 ​​a​​​ 个,剩余第二种水果 ​​b​​​ 个,剩余第三种水果 ​​c​​​ 个,并且以 ​​k​​ 结尾所有的组合数。

枚举所有的 ​​a,b,c​​​ , ​​dp[s][b][c][0]​​​ 可以由 ​​dp[a][b][c][1]​​​ 与 ​​dp[a][b][c][2]​​​ 转移而来,其中 ​​s​​​ 为保证第一种水果最多连续不超过 ​​d[0]​​ 的水果数目。

因此 ​​s​​​ 取值范围为: ​​[max(0,a-d[0]),a)​​ 。

第二种水果和第三种水果的转移也类似,输出 ​​mod 1e9+7​​ 之后的结果。

AC 代码

#includeusing namespace std;const int mod = 1000000007;typedef long long LL;LL dp[51][51][51][3];int n[3],d[3];int main(){ ios::sync_with_stdio(false); int T; cin>>T; while(T--) { memset(dp,0,sizeof(dp)); for(int i=0; i<3; i++) cin>>n[i]; for(int i=0; i<3; i++) cin>>d[i]; for(int a=n[0]; a>=0; a--) { for(int b=n[1]; b>=0; b--) { for(int c=n[2]; c>=0; c--) { for(int s=max(0,a-d[0]); s

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:HDU 5976 Detachment (逆元)
下一篇:关于汽车线上营销这件事,字节跳动有话说!(字节跳动汽车行业销售经理)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~