CF451E.Devu and Flowers
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Devu wants to decorate his garden with flowers. He has purchased n boxes, where the i -th box contains fi flowers. All flowers in a single box are of the same color (hence they are indistinguishable). Also, no two boxes have flowers of the same color.
Now Devu wants to select exactly s flowers from the boxes to decorate his garden. Devu would like to know, in how many different ways can he select the flowers from each box? Since this number may be very large, he asks you to find the number modulo (109+7) .
Devu considers two ways different if there is at least one box from which different number of flowers are selected in these two ways.
输入格式
The first line of input contains two space-separated integers n and s ( 1<=n<=20 , 0<=s<=1014 ).
The second line contains n space-separated integers f1,f2,... fn ( 0<=fi<=1012 ).
输出格式
Output a single integer — the number of ways in which Devu can select the flowers modulo (109+7) .
输入输出样例
输入#1
2 3 1 3
输出#1
2
输入#2
2 4 2 2
输出#2
1
输入#3
3 5 1 3 2
输出#3
3
说明/提示
Sample 1. There are two ways of selecting 3 flowers: 1,2 and 0,3 .
Sample 2. There is only one way of selecting 4 flowers: 2,2 .
Sample 3. There are three ways of selecting 5 flowers: 1,2,2 , 0,3,2 , and 1,3,1 .