CF466D.Increase Sequence
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Peter has a sequence of integers a1,a2,...,an . Peter wants all numbers in the sequence to equal h . He can perform the operation of "adding one on the segment [l,r] ": add one to all elements of the sequence with indices from l to r (inclusive). At that, Peter never chooses any element as the beginning of the segment twice. Similarly, Peter never chooses any element as the end of the segment twice. In other words, for any two segments [l1,r1] and [l2,r2] , where Peter added one, the following inequalities hold: l1=l2 and r1=r2 .
How many distinct ways are there to make all numbers in the sequence equal h ? Print this number of ways modulo 1000000007 (109+7) . Two ways are considered distinct if one of them has a segment that isn't in the other way.
输入格式
The first line contains two integers n,h (1<=n,h<=2000) . The next line contains n integers a1,a2,...,an (0<=ai<=2000) .
输出格式
Print a single integer — the answer to the problem modulo 1000000007 (109+7) .
输入输出样例
输入#1
3 2 1 1 1
输出#1
4
输入#2
5 1 1 1 1 1 1
输出#2
1
输入#3
4 3 3 2 1 1
输出#3
0