#D12635. Placing Squares
Placing Squares
Placing Squares
Joisino has a bar of length N, which has M marks on it. The distance from the left end of the bar to the i-th mark is X_i.
She will place several squares on this bar. Here, the following conditions must be met:
- Only squares with integral length sides can be placed.
- Each square must be placed so that its bottom side touches the bar.
- The bar must be completely covered by squares. That is, no square may stick out of the bar, and no part of the bar may be left uncovered.
- The boundary line of two squares may not be directly above a mark.
Examples of arrangements that satisfy/violate the conditions
The beauty of an arrangement of squares is defined as the product of the areas of all the squares placed. Joisino is interested in the sum of the beauty over all possible arrangements that satisfy the conditions. Write a program to find it. Since it can be extremely large, print the sum modulo 10^9+7.
Constraints
- All input values are integers.
- 1 \leq N \leq 10^9
- 0 \leq M \leq 10^5
- 1 \leq X_1 < X_2 < ... < X_{M-1} < X_M \leq N-1
Input
Input is given from Standard Input in the following format:
N M X_1 X_2 ... X_{M-1} X_M
Output
Print the sum of the beauty over all possible arrangements that satisfy the conditions, modulo 10^9+7.
Examples
Input
3 1 2
Output
13
Input
5 2 2 3
Output
66
Input
10 9 1 2 3 4 5 6 7 8 9
Output
100
Input
1000000000 0
Output
693316425
inputFormat
input values are integers.
- 1 \leq N \leq 10^9
- 0 \leq M \leq 10^5
- 1 \leq X_1 < X_2 < ... < X_{M-1} < X_M \leq N-1
Input
Input is given from Standard Input in the following format:
N M X_1 X_2 ... X_{M-1} X_M
outputFormat
Output
Print the sum of the beauty over all possible arrangements that satisfy the conditions, modulo 10^9+7.
Examples
Input
3 1 2
Output
13
Input
5 2 2 3
Output
66
Input
10 9 1 2 3 4 5 6 7 8 9
Output
100
Input
1000000000 0
Output
693316425
样例
1000000000 0
693316425