Problem5262--ABC160——Task C:Traveling Salesman around Lake

5262: ABC160——Task C:Traveling Salesman around Lake

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

There is a circular pond with a perimeter of $K$ meters, and $N$ houses around them.The $i$-th house is built at a distance of $A_i$ meters from the northmost point of the pond, measured clockwise around the pond.
When traveling between these houses, you can only go around the pond.
Find the minimum distance that needs to be traveled when you start at one of the houses and visit all the $N$ houses.

Input

Input is given from Standard Input in the following format:
$K\ N$
$A_1\ A_2\ ...\ A_N$

Output

Print the minimum distance that needs to be traveled when you start at one of the houses and visit all the $N$ houses.

Constraints

$2 ≤ K ≤ 10^6$
$2 ≤ N ≤ 2×10^5$
$0 ≤ A_1 < ... < A_N < K$
All values in input are integers.

Sample 1 Input

20 3
5 10 15

Sample 1 Output

10
If you start at the $1$-st house and go to the $2$-nd and $3$-rd houses in this order, the total distance traveled will be $10$.

Sample 2 Input

20 3
0 5 15

Sample 2 Output

10
If you start at the $2$-nd house and go to the $1$-st and $3$-rd houses in this order, the total distance traveled will be $10$.

HINT

【题目来源】
https://atcoder.jp/contests/abc160/tasks/abc160_c

Source/Category

AtCoder_ABC 100.160.ABC160