//#pragma GCC optimize("Ofast,unroll-loops")
#include "bits/stdc++.h"
using namespace std;
#ifdef duc_debug
#include "bits/debug.h"
#else
#define debug(...)
#endif
#define int long long
const int maxn = 2005;
const int mod = 1e9+7;
int n, h, a[maxn];
int f[maxn][maxn];
// f(i, j) number of ways to
// cover [1, i] with j open
void solve(){
cin >> n >> h;
for(int i = 1; i <= n; ++i){
cin >> a[i];
}
f[0][0] = 1;
for(int i = 1; i <= n; ++i){
for(int j = 0; j <= i; ++j){
if(a[i] + j == h){
if(j > 0) f[i][j] = (f[i][j] + f[i - 1][j - 1]) % mod; // add an open
f[i][j] = (f[i][j] + f[i - 1][j]) % mod; // do nothing
}
if(a[i] + j + 1 == h){
f[i][j] = (f[i][j] + f[i - 1][j + 1] * (j + 1)) % mod; // add a close
f[i][j] = (f[i][j] + f[i - 1][j]) % mod; // add len-1 interval
if(j > 0) f[i][j] = (f[i][j] + f[i - 1][j] * j) % mod; // add ][ idk why
}
debug(i, j, f[i][j]);
}
}
cout << f[n][0];
}
signed main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int test = 1;
// cin >> test;
for(int i = 1; i <= test; i++){
// cout << "Case " << "#" << i << ": ";
solve();
}
return 0;
}
501A - Contest | 160A- Twins |
752. Open the Lock | 1535A - Fair Playoff |
1538F - Interesting Function | 1920. Build Array from Permutation |
494. Target Sum | 797. All Paths From Source to Target |
1547B - Alphabetical Strings | 1550A - Find The Array |
118B - Present from Lena | 27A - Next Test |
785. Is Graph Bipartite | 90. Subsets II |
1560A - Dislike of Threes | 36. Valid Sudoku |
557. Reverse Words in a String III | 566. Reshape the Matrix |
167. Two Sum II - Input array is sorted | 387. First Unique Character in a String |
383. Ransom Note | 242. Valid Anagram |
141. Linked List Cycle | 21. Merge Two Sorted Lists |
203. Remove Linked List Elements | 733. Flood Fill |
206. Reverse Linked List | 83. Remove Duplicates from Sorted List |
116. Populating Next Right Pointers in Each Node | 145. Binary Tree Postorder Traversal |