eolymp
bolt
Try our new interface for solving problems
Problems

HILO (Platinum)

HILO (Platinum)

Bessie knows a number x + 0.5 where x is some integer between 0 to n, inclusive. Elsie is trying to guess this number. She can ask questions of the form "is i high or low?" for some integer i between 1 and n, inclusive. Bessie responds by saying "HI!" if i is greater than x + 0.5, or "LO!" if i is less than x + 0.5.

Elsie comes up with the following strategy for guessing Bessie's number. Before making any guesses, she creates a list of n numbers, where every number from 1 to n occurs exactly once (in other words, the list is a permutation of size n). Then, she goes through the list, guessing numbers that appear in the list in order. However, Elsie skips any unnecessary guesses. That is, if Elsie is about to guess some number i and Elsie previously guessed some j < i such that Bessie responded with "HI!", Elsie will not guess i and will move on to the next number in the list. Similarly, if she is about to guess some number i and she previously guessed some j > i such that Bessie responded with "LO!", Elsie will not guess i and will move on to the next number in the list. It can be proven that using this strategy, Elsie always uniquely determines x regardless of the permutation she creates.

If we concatenate all of Bessie's responses of either "HI" or "LO" into a single string s, the number of times Bessie says "HILO" is the number of length 4 substrings of S that are equal to "HILO".

Bessie knows that Elsie will use this strategy and has already chosen the value of x, but she does not know what permutation Elsie will use. Your goal is to compute the sum of the number of times Bessie says "HILO" over all permutations that Elsie could possibly choose, modulo 109 + 7.

Input

The only line contains n (1n5000) and x.

Output

The total number of HILOs modulo 109 + 7.

Example 1

In this test case, Bessie's number is 2.5.

For example, if Elsie's permutation is (4, 1, 3, 2), then Bessie will say "HILOHILO", for a total of two "HILO"s. As another example, if Elsie's permutation is (3, 1, 2, 4), then Bessie will say "HILOLO", for a total of one "HILO".

Example 2

Make sure to output the sum modulo 109 + 7.

Time limit 2 seconds
Memory limit 256 MiB
Input example #1
4 2
Output example #1
17
Input example #2
60 10
Output example #2
508859913
Source 2021 USACO December, Platinum