CF295D.Greg and Caves
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Greg has a pad. The pad's screen is an n×m rectangle, each cell can be either black or white. We'll consider the pad rows to be numbered with integers from 1 to n from top to bottom. Similarly, the pad's columns are numbered with integers from 1 to m from left to right.
Greg thinks that the pad's screen displays a cave if the following conditions hold:
- There is a segment [l,r] (1<=l<=r<=n) , such that each of the rows l,l+1,...,r has exactly two black cells and all other rows have only white cells.
- There is a row number t (l<=t<=r) , such that for all pairs of rows with numbers i and j (l<=i<=j<=t) the set of columns between the black cells in row i (with the columns where is these black cells) is the subset of the set of columns between the black cells in row j (with the columns where is these black cells). Similarly, for all pairs of rows with numbers i and j (t<=i<=j<=r) the set of columns between the black cells in row j (with the columns where is these black cells) is the subset of the set of columns between the black cells in row i (with the columns where is these black cells).
Greg wondered, how many ways there are to paint a cave on his pad. Two ways can be considered distinct if there is a cell that has distinct colors on the two pictures.
Help Greg.
输入格式
The first line contains two integers n , m — the pad's screen size (1<=n,m<=2000) .
输出格式
In the single line print the remainder after dividing the answer to the problem by 1000000007 (109+7) .
输入输出样例
输入#1
1 1
输出#1
0
输入#2
4 4
输出#2
485
输入#3
3 5
输出#3
451