3637.Shaass and Lights

Time Limit: 1s Memory Limit: 256MB

There are n lights aligned in a row. These lights are numbered 1 to n from left to right. Initially some of the lights are switched on. Shaass wants to switch all the lights on. At each step he can switch a light on (this light should be switched off at that moment) if there's at least one adjacent light which is already switched on.

He knows the initial state of lights and he's wondering how many different ways there exist to switch all the lights on. Please find the required number of ways modulo 1000000007(109+7).

Input Format(From the terminal/stdin)

The first line of the input contains two integers n and m where n is the number of lights in the sequence and m is the number of lights which are initially switched on, (1 \le n \le 1000,1 \le m \le n). The second line contains m distinct integers, each between 1 to n inclusive, denoting the indices of lights which are initially switched on.

Output Format(To the terminal/stdout)

In the only line of the output print the number of different possible ways to switch on all the lights modulo 1000000007(109+7).

Sample Input 1

Copy
3 1
1
 · \n
 \n

Sample Output 1

Copy
1
 \n

Sample Input 2

Copy
4 2
1 4
 · \n
 · \n

Sample Output 2

Copy
2
 \n

Sample Input 3

Copy
11 2
4 8
  · \n
 · \n

Sample Output 3

Copy
6720
    \n

Submit

请先 登录

© 2025 FAQs