Counting Haybales

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

As usual, Bessie the cow is causing trouble in Farmer John's barn. FJ has NN (1N50001\leq N \leq 5000) stacks of haybales. For each i\[1,N]i\in \[1,N], the iith stack has h_ih\_i (1h_i1091\le h\_i\le 10^9) haybales. Bessie does not want any haybales to fall, so the only operation she can perform is as follows:

  • If two adjacent stacks' heights differ by exactly one, she can move the top haybale of the taller stack to the shorter stack.

How many configurations are obtainable after performing the above operation finitely many times, modulo 109+710^9+7? Two configurations are considered the same if, for all ii, the iith stack has the same number of haybales in both.

입력

The first line contains TT (1T101\le T\le 10), the number of independent test cases, all of which must be solved to solve one input correctly.

Each test case consists of NN, and then a sequence of NN heights. It is guaranteed that the sum of NN over all test cases does not exceed 50005000.

출력

Please output TT lines, one for each test case.

힌트

For the first test case, the four possible configurations are:

(2,2,2,3),(2,2,3,2),(2,3,2,2),(3,2,2,2).(2,2,2,3), (2,2,3,2), (2,3,2,2), (3,2,2,2).

For the second test case, the four possible configurations are:

(2,3,3,1),(3,2,3,1),(3,3,2,1),(3,3,1,2).(2,3,3,1),(3,2,3,1),(3,3,2,1), (3,3,1,2).