301143: CF213B. Numbers

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Numbers

题意翻译

>$n$个数$a[i]$,$m$个数$1-m$ 问最少要多少次交换,使得数组$a$中$odd$个数等于$even$个数 所有数都不同,无解输出$-1$   >Author:清风ღ

题目描述

Furik loves writing all sorts of problems, especially such that he can't solve himself. You've got one of his problems, the one Furik gave to Rubik. And Rubik asks you to solve it. There is integer $ n $ and array $ a $ , consisting of ten integers, indexed by numbers from 0 to 9. Your task is to count the number of positive integers with the following properties: - the number's length does not exceed $ n $ ; - the number doesn't have leading zeroes; - digit $ i $ $ (0<=i<=9) $ occurs in the number at least $ a[i] $ times.

输入输出格式

输入格式


The first line contains integer $ n $ $ (1<=n<=100) $ . The next line contains 10 integers $ a[0] $ , $ a[1] $ , $ ... $ , $ a[9] $ $ (0<=a[i]<=100) $ — elements of array $ a $ . The numbers are separated by spaces.

输出格式


On a single line print the remainder of dividing the answer to the problem by $ 1000000007 $ $ (10^{9}+7) $ .

输入输出样例

输入样例 #1

1
0 0 0 0 0 0 0 0 0 1

输出样例 #1

1

输入样例 #2

2
1 1 0 0 0 0 0 0 0 0

输出样例 #2

1

输入样例 #3

3
1 1 0 0 0 0 0 0 0 0

输出样例 #3

36

说明

In the first sample number 9 meets the requirements. In the second sample number 10 meets the requirements. In the third sample numbers 10, 110, 210, 120, 103 meet the requirements. There are other suitable numbers, 36 in total.

Input

题意翻译

>$n$个数$a[i]$,$m$个数$1-m$ 问最少要多少次交换,使得数组$a$中$odd$个数等于$even$个数 所有数都不同,无解输出$-1$   >Author:清风ღ

加入题单

算法标签: