CF118D.Caesar's Legions

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Gaius Julius Caesar, a famous general, loved to line up his soldiers. Overall the army had n1n_{1} footmen and n2n_{2} horsemen. Caesar thought that an arrangement is not beautiful if somewhere in the line there are strictly more that k1k_{1} footmen standing successively one after another, or there are strictly more than k2k_{2} horsemen standing successively one after another. Find the number of beautiful arrangements of the soldiers.

Note that all n1+n2n_{1}+n_{2} warriors should be present at each arrangement. All footmen are considered indistinguishable among themselves. Similarly, all horsemen are considered indistinguishable among themselves.

输入格式

The only line contains four space-separated integers n1n_{1} , n2n_{2} , k1k_{1} , k2k_{2} ( 1<=n1,n2<=100,1<=k1,k2<=101<=n_{1},n_{2}<=100,1<=k_{1},k_{2}<=10 ) which represent how many footmen and horsemen there are and the largest acceptable number of footmen and horsemen standing in succession, correspondingly.

输出格式

Print the number of beautiful arrangements of the army modulo 100000000100000000 (108)(10^{8}) . That is, print the number of such ways to line up the soldiers, that no more than k1k_{1} footmen stand successively, and no more than k2k_{2} horsemen stand successively.

输入输出样例

  • 输入#1

    2 1 1 10
    

    输出#1

    1
    
  • 输入#2

    2 3 1 2
    

    输出#2

    5
    
  • 输入#3

    2 4 1 1
    

    输出#3

    0
    

说明/提示

Let's mark a footman as 1, and a horseman as 2.

In the first sample the only beautiful line-up is: 121

In the second sample 5 beautiful line-ups exist: 12122, 12212, 21212, 21221, 22121

首页