D. Memory and Scores
 

Memory and his friend Lexa are competing to get higher score in one popular computer game. Memory starts with score a and Lexa starts with score b. In a single turn, both Memory and Lexa get some integer in the range [ - k;k] (i.e. one integer among - k,  - k + 1,  - k + 2, ...,  - 2,  - 1, 0, 1, 2, ..., k - 1, k) and add them to their current scores. The game has exactly t turns. Memory and Lexa, however, are not good at this game, so they both always get a random integer at their turn.

Memory wonders how many possible games exist such that he ends with a strictly higher score than Lexa. Two games are considered to be different if in at least one turn at least one player gets different score. There are (2k + 1)2t games in total. Since the answer can be very large, you should print it modulo 109 + 7. Please solve this problem for Memory.

Input
 

The first and only line of input contains the four integers abk, and t (1 ≤ a, b ≤ 100, 1 ≤ k ≤ 1000, 1 ≤ t ≤ 100) — the amount Memory and Lexa start with, the number k, and the number of turns respectively.

Output
 

Print the number of possible games satisfying the conditions modulo 1 000 000 007 (109 + 7) in one line.

Examples
input
 
1 2 2 1
output
 
6
Note

In the first sample test, Memory starts with 1 and Lexa starts with 2. If Lexa picks  - 2, Memory can pick 0, 1, or 2 to win. If Lexa picks  - 1, Memory can pick 1 or 2 to win. If Lexa picks 0, Memory can pick 2 to win. If Lexa picks 1 or 2, Memory cannot win. Thus, there are3 + 2 + 1 = 6 possible games in which Memory wins.

 题意:

  A,B两人玩t轮游戏

  每轮游戏没人可以从[-k,k]中获取任意的一个分数

  AB起始分数分别为a,b

  问你最终A分数严格比B多的方案数

题解:

  设定dp[i][j]为第i轮 获得分数j的方案数

  这个可以进行滚动数组和前缀和优化

  最后枚举一个人的 分数 得到答案

#include<iostream>
#include<algorithm>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<vector>
#include<queue>
#include<set>
using namespace std; #pragma comment(linker, "/STACK:102400000,102400000")
#define ls i<<1
#define rs ls | 1
#define mid ((ll+rr)>>1)
#define pii pair<int,int>
#define MP make_pair typedef long long LL;
const long long INF = 1e18;
const double Pi = acos(-1.0);
const int N = 5e5+, M = 1e2+, mod = 1e9+, inf = 2e9; int a,b,k,t;
LL sum[N], dp[][N];
int main() {
scanf("%d%d%d%d",&a,&b,&k,&t);
int now = ;
int last = now ^ ;
dp[last][] = ;
for(int i = ; i <= * k * t; ++i) sum[i] = ;
for(int i = ; i <= t; ++i) {
for(int j = ; j <= *k*t; ++j) {
if(j <= * k) dp[now][j] = sum[j];
else {
dp[now][j] = (( sum[j] - sum[j - *k - ] ) % mod + mod ) % mod;
}
}
sum[] = dp[now][];
for(int j = ; j <= * k * t; ++j)
sum[j] = ((sum[j-] + dp[now][j]) % mod + mod) % mod;
now^=;
}
LL ans = ;
for(int i = ; i <= * k * t; ++i) {
if(a + i - - b >= )ans = (ans + dp[now^][i] * sum[a + i - - b]%mod) % mod;
}
cout<<(ans+mod) % mod<<endl;
return ;
}

最新文章

  1. Android一个ListView列表之中插入两种不同的数据
  2. iOS 进阶 第七天(0403)
  3. android退出登陆后,清空之前所有的activity,进入登陆主界面
  4. jboss 7部署cas3.4.11
  5. Android_SeekBar
  6. Javascript自执行匿名函数(function() { })()的原理浅析
  7. VR全景智慧城市搭建掀起实体市场潮流
  8. python 标准库 -- logging
  9. ASP.NET windows验证IIS配置
  10. Android必知必会-App 常用图标尺寸规范汇总
  11. 猴子选大王 (约瑟夫环)(c#)
  12. 神贴真开眼界:为什么很多人倡导重视能力和素质,但同时对学历有严格要求?——代表了上一场比赛的输赢,招聘成本很重要。如果上一场游戏失败了,尽量让自己成为当前群体的尖子。学历只是其中的一个作品而已,但学历代表了学生时代为之做出的牺牲。人群自有偏向集中性 good
  13. 高精度除法(b为int类型)
  14. CasperJS API介绍
  15. javaSE web开发 登录思路代码
  16. Angular入门篇高速开发导航网
  17. hadoop从调整GC到关键Counter计算原理分析
  18. elasticsearch插件三—— Marvel插件安装详解
  19. 通过xshell在linux上安装tomcat8
  20. net-snmp配置文件snmp.conf

热门文章

  1. int型整数中2进制中含有1的个数。
  2. 左侧导航栏复制粘贴保存html即可
  3. springMVC 访问404
  4. 多线程同步_Monitor
  5. windows.h和winsock2.h包含顺序问题(转)
  6. delphi控件属性大全-详解-简介
  7. 构建web应用示例
  8. JAVA thread0.interrupt()方法
  9. windows服务
  10. iOS应用架构谈(三):网络层设计方案(上)