跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F1911. Increase Sequence

    ID: 1917 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 7 上传者: 标签>组合数学动态规划数学提高难度共享题库Codeforces英文题面题目来源题面语言

Increase Sequence

题目描述

D. Increase Sequence
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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: l1l2 and r1r2.

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.

Input

The first line contains two integers n,h (1≤n,h≤2000). The next line contains n integers a1,a2,...,an (0≤ai≤2000).

Output

Print a single integer − the answer to the problem modulo 1000000007(109+7).

Examples
Input
3 2
1 1 1
Output
4
Input
5 1
1 1 1 1 1
Output
1
Input
4 3
3 2 1 1
Output
0

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1487 题。保留原作者与原赛事署名。