200683: [AtCoder]ARC068 F - Solitaire

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $1200$ points

Problem Statement

Snuke has decided to play with $N$ cards and a deque (that is, a double-ended queue). Each card shows an integer from $1$ through $N$, and the deque is initially empty.

Snuke will insert the cards at the beginning or the end of the deque one at a time, in order from $1$ to $N$. Then, he will perform the following action $N$ times: take out the card from the beginning or the end of the deque and eat it.

Afterwards, we will construct an integer sequence by arranging the integers written on the eaten cards, in the order they are eaten. Among the sequences that can be obtained in this way, find the number of the sequences such that the $K$-th element is $1$. Print the answer modulo $10^{9} + 7$.

Constraints

  • $1 ≦ K ≦ N ≦ 2{,}000$

Input

The input is given from Standard Input in the following format:

$N$ $K$

Output

Print the answer modulo $10^{9} + 7$.


Sample Input 1

2 1

Sample Output 1

1

There is one sequence satisfying the condition: $1,2$. One possible way to obtain this sequence is the following:

  • Insert both cards, $1$ and $2$, at the end of the deque.
  • Eat the card at the beginning of the deque twice.

Sample Input 2

17 2

Sample Output 2

262144

Sample Input 3

2000 1000

Sample Output 3

674286644

Input

题意翻译

将1-n顺序加入双端队列(每次可加头可加尾),再删除(每次可删头可删尾),求有多少种删除序列,使得1是第k个被删的。

加入题单

算法标签: