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 - 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.

Examples
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个绿方块,第i层有i块,每层的方格颜色相同,层数为最多装的层数,求方案数;

思路:得到用i块红方块装这个red-green towers的方案,剩余用绿色装,判断是否够,够就加;

01背包方案数,复杂度(h*min(r,g));

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pi (4*atan(1.0))
const int N=1e5+,M=4e6+,inf=1e9+,mod=1e9+;
const ll INF=1e18+;
int h[];
int hh(int x)
{
int pos=upper_bound(h+,h+,x)-h;
return pos-;
}
int v[];
ll dp[N<<];
int main()
{
for(int i=;i<=;i++)
v[i]=i,h[i]=i*(i+)/;
int r,g;
scanf("%d%d",&r,&g);
int hig1=hh(r+g);
memset(dp,,sizeof(dp));
dp[]=;
for(int t=;t<=hig1;t++)
{
for(int i=r;i>=t;i--)
dp[i]+=dp[i-v[t]],dp[i]%=mod;
}
ll ans=;
for(int i=max(,h[hig1]-g);i<=r;i++)
ans+=dp[i],ans%=mod;
printf("%lld\n",ans);
return ;
}

最新文章

  1. SAP GUI的配置文件
  2. [Unity3D]深度相机 Depth Camera
  3. HTML5 Dashboard – 那些让你激动的 Web 技术
  4. 微信内测&quot;微视频&quot; 朋友圈可以发6-8秒短视频
  5. The Flash
  6. nsenter into docker. selinux(semanage,restorecon)
  7. mssql游标demo
  8. JQuery easyui (4)LinkButtion(按钮)组件
  9. 5.4.3 RegExp构造函数属性
  10. CODE - TSQL convert Query to JSON
  11. Android版本和API Level的对应关系
  12. jQuery,使用on代替delegate,live 写法区别
  13. 笨方法学python--打印
  14. echarts 支持svg格式
  15. Python 学习 第十一篇:numpy
  16. Window 对象 HTML框架标签(Frame)
  17. 低版本系统兼容的ActionBar(二)ActionProvider+分离式ActionBar+分离式的ActionMode
  18. sql server 备份恢复效率
  19. iOS UI基础-4.2应用程序管理 Xib文件使用
  20. Aria2+yaaw+Chrome插件BaiduExporter实现百度网盘下载

热门文章

  1. JSP页面中的tab页
  2. Wireshark网络分析工具(二)
  3. C#窗口的Load事件与Shown事件的差别
  4. C语言转义字符的使用方法
  5. flex datagrid 导出csv
  6. javascript重置(base层)(。。。。不完整)
  7. PHP操作MongoDB数据库的示例
  8. linux基础三---网络基础&amp;软件包管理
  9. Hadoop单机搭建
  10. nf_conntrack之解决方案