CF713E.Sonya Partymaker

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Owl Sonya decided to become a partymaker. To train for this role she gather all her owl friends in the country house. There are mm chairs located in a circle and consequently numbered with integers from 11 to mm . Thus, chairs ii and i+1i+1 are neighbouring for all ii from 11 to m1m-1 . Chairs 11 and mm are also neighbouring. Some chairs are occupied by her friends. There are nn friends in total. No two friends occupy the same chair. Rules are the following:

  1. Each participant removes from the game the chair he is currently sitting on.
  2. Each of the participants choose a direction that she will follow: clockwise (indices increase, from mm goes to 11 ) and counter-clockwise (indices decrease, from 11 goes to mm ). This direction may coincide or be different for any pair of owls.
  3. Each turn all guests move one step in the chosen directions. If some guest move to the position with a chair there, he removes this chair from the game.
  4. Game ends if there are no more chairs left in the game.

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 mm ( 1<=m<=1091<=m<=10^{9} ) — the length of the circle.

The second line contains a single integer nn ( 1<=n<=1000001<=n<=100000 ) — the number of friends.

Last line contains an increasing sequence of nn integers aia_{i} ( 1<=ai<=m1<=a_{i}<=m ) — initial positions of all owls.

输出格式

Print the minimum number of move required to finish the game. Note, that 00 also may be an answer.

输入输出样例

  • 输入#1

    6
    3
    1 3 5
    

    输出#1

    1
    
  • 输入#2

    6
    2
    1 6
    

    输出#2

    2
    
  • 输入#3

    406
    6
    1 2 3 204 205 206
    

    输出#3

    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.

首页