Preparando MOJI
Owl Sonya decided to become a partymaker. To train for this role she gather all her owl friends in the country house. There are m chairs located in a circle and consequently numbered with integers from 1 to m. Thus, chairs i and i + 1 are neighbouring for all i from 1 to m - 1. Chairs 1 and m are also neighbouring. Some chairs are occupied by her friends. There are n friends in total. No two friends occupy the same chair. Rules are the following:
Owls are very busy and want to get rid of the game as soon as possible. They cooperate to pick the direction. Your goal is to find the minimum number o moves required to finish the game.
The first line of the input contains a single integer m (1 ≤ m ≤ 109) — the length of the circle.
The second line contains a single integer n (1 ≤ n ≤ 100 000) — the number of friends.
Last line contains an increasing sequence of n integers ai (1 ≤ ai ≤ m) — initial positions of all owls.
Print the minimum number of move required to finish the game. Note, that 0 also may be an answer.
6
3
1 3 5
1
6
2
1 6
2
406
6
1 2 3 204 205 206
100
In the first sample, it's possible if all owls will move clockwise, i.e. in the direction of increasing indices.
In the sample, first owl has to move clockwise, while the second — counterclockwise.
In the third sample, the first and the fourth owls should move counterclockwise, while the third and the sixth — clockwise. The second and the firth may move in any direction.