codeforces Round #273(div2) D解题报告

该博客详细介绍了如何解决Codeforces Round #273(Div. 2)中的一道题目——构建红绿塔。博主分析了题目要求,指出暴力搜索不适用,并提出动态规划的解决方案,阐述了状态转移方程,并给出了代码实现。
摘要由CSDN通过智能技术生成

D. Red-Green Towers
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 - 1blocks, 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·105r + 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.

题目大意:

给出绿砖个数和红砖个数,来堆一个塔(如图)。最顶层为1个,按顺序下来就是2, 3 ... n-2, n-1, n。每一层的颜色必须相同,求出最大层数中不同的塔的个数。

解法:

如若用暴力搜索,肯定是不行的,因为状态数太多,h最大是800+,每层有2种状态,暴搜是指数级,这太可怕了。

我们可以确定的就是,给了我们红砖个数和绿砖个数,我们可以求出总数,就可以只用确定其中一个状态,就可以确定另一个状态。

       假设:i为目前在哪一层,j为红砖数量,通过sum-cnt[i-1]-j我们可以得知绿砖还有多少,接下来就是很简单的DP思路了。

给出状态转移方程:

       f[i][j] = f[i-1][j]+f[i-1][j+h[i]];  

代码:

#include <cstdio>
#define modn 1000000007

int r, g, sum, ans, cnt[1010];
int f[2][4*123456];

void init() {
	scanf("%d%d", &r, &g);
	sum = r+g;

	f[0][r] = 1;
}

void solve() {
	int now=0;
	int pre=1;

	for (int i = 1; i <= 1000; i++) {
		now ^= 1;
		pre = (now+1)%2; 
		cnt[now] = cnt[pre]+i;

		if (cnt[now] > sum) {
			for (int j = 0; j <= r; j++) {
				ans += f[pre][j];
				if (ans >= modn)  ans -= modn;
			}

			break;
		}

		for (int j = 0; j <= r; j++) {
			f[now][j] = 0;

			if (sum-cnt[pre]-j >= i)
				f[now][j] = f[pre][j];

			f[now][j] += f[pre][j+i];
			if (f[now][j] >= modn)  f[now][j] -= modn;
		}
	}

	printf("%d\n", ans);
}

int main() {
	init();
	solve();
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值