#AGC059F. [AGC059F] LIDS

[AGC059F] LIDS

Score : 19001900 points

Problem Statement

Given N,pos,valN, pos, val, find the number of permutations P=(P1,P2,,PN)P=(P_1, P_2, \ldots, P_N) of (1,2,,N)(1,2,\ldots,N) that satisfy all of the following conditions, modulo 109+710^9+7:

  • LIS(P)+LDS(P)=N+1LIS(P) + LDS(P) = N+1
  • Ppos=valP_{pos} = val

Here, LIS(P)LIS(P) denotes the length of the longest increasing subsequence of PP, and LDS(P)LDS(P) denotes the length of the longest decreasing subsequence of PP.

Constraints

  • 1N51061 \le N \le 5\cdot 10^6
  • 1pos,valN1 \le pos, val \le N
  • All values in the input are integers.

Input

Input is given from Standard Input in the following format:

NN pospos valval

Output

Print the answer.

3 2 2
2

The following permutations satisfy the conditions: (1,2,3),(3,2,1)(1, 2, 3), (3, 2, 1).

4 1 1
6

The following permutations satisfy the conditions: $(1, 2, 3, 4), (1, 2, 4, 3), (1, 3, 2, 4), (1, 3, 4, 2), (1, 4, 2, 3), (1, 4, 3, 2)$.

5 2 5
11
2022 69 420
128873576