原题链接


D. Increase Sequence



time limit per test



memory limit per test



input



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: 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. 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.



Output



Print a single integer — the answer to the problem modulo 1000000007 (109.



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





任意ai, aj之间的差值不能超过1

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <map>
#include <vector>
#include <queue>
#define maxn 2005
#define MOD 1000000007
#define INF 1e9
using namespace std;
typedef long long ll;

int dp[maxn], n, h;
int main(){
//	freopen("in.txt", "r", stdin); 
	scanf("%d%d", &n, &h);
	for(int i = 1; i <= n; i++){
		scanf("%d", dp+i);
		dp[i] = h - dp[i];
		if(dp[i] < 0){
			puts("0");
			return 0;
		} 
	} 
	ll ans = 1;
	int cnt = 0;
	for(int i = 1; i <= n + 1; i++){
		int h = dp[i] - dp[i-1];
		if(h == 1)
		   cnt++;
		else if(h == 0){
			(ans *= cnt + 1) %= MOD;
		}
		else if(h == -1){
			(ans *= cnt) %= MOD;
			cnt--;
		}
		else
		 ans = 0;
	}
	cout << ans << endl;
	return 0;
}