Codeforces 478D Red-Green Towers (DP)

There are r red and g green blocks for construction of the red-green tower. Red-green tower can be built following next rules:

Red-green tower is consisting of some number of levels;
Let the red-green tower consist of n levels, then the first level of this tower should consist of n blocks, second level — of n - 1 blocks, the third one — of n - 2 blocks, and so on — the last level of such tower should consist of the one block. In other words, each successive level should contain one block less than the previous one;
Each level of the red-green tower should contain blocks of the same color.

Let h be the maximum possible number of levels of red-green tower, that can be built out of r red and g green blocks meeting the rules above. The task is to determine how many different red-green towers having h levels can be built out of the available blocks.

Two red-green towers are considered different if there exists some level, that consists of red blocks in the one tower and consists of green blocks in the other tower.

You are to write a program that will find the number of different red-green towers of height h modulo 109 + 7.

Input
The only line of input contains two integers r and g, separated by a single space — the number of available red and green blocks respectively (0 ≤ r, g ≤ 2·105, r + g ≥ 1).

Output
Output the only integer — the number of different possible red-green towers of height h modulo 109 + 7.

Sample test(s)
Input
4 6
Output
2
Input
9 7
Output
6
Input
1 1
Output
2
Note
The image in the problem statement shows all possible red-green towers for the first sample.

题目大意

用r块红色、g块绿色的方块,搭成一个h层(尽可能高)的塔,第i层有i个相同颜色的方块。

问所有可行的方案有多少。

解题思路

动态规划

dp(h, r) 表示到h层,已用r块红色的方案数
绿色个数可以通过h,r确定。

dp(h, r) = dp(h-1, r-h) + dp(h-1, r)

明显可以滚动压缩,dp只与之前一次相关,r反向循环避免引用修改过的数据。
dp[r] += dp[r-h];

参考代码

#include <iostream>
#include <cstring>
#include <cstdio>
using namespace std;

const int MAXN = 200010;
const int MOD = 1e9 + 7;
int dp[MAXN], R, G, H, ans;

void init() {
    memset(dp, 0, sizeof(dp));
    dp[0] = 1;
    ans = 0;
}

void solve() {
    int h;
    for (h = 1; h*(h+1) <= 2*(R+G); h++) {
        for (int r = min(h*(h+1)/2, R); r >= h; r--) {
            dp[r] = (dp[r] + dp[r-h]) % MOD;
        }
    }
    H = h - 1;
    for (int r = max(0, H*(H+1)/2-G); r <= min(H*(H+1)/2, R); r++) {
        ans = (ans + dp[r]) % MOD;
    }
    printf("%d\n", ans);
}

int main() {
    while (~scanf("%d%d", &R, &G)) {
        init();
        solve();
    }
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值