303692: CF713E. Sonya Partymaker
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Sonya Partymaker
题意翻译
一个长度为 $m$ 的环,最初有 $n$ 个点上有人。 每秒可以让所有人都走一步(可以选择每个人的方向,但中途不能变换方向)。 问使所有点都被走到的最短时间。 $n \leq 10^5$,$m \leq 10^9$。题目描述
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: 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 $ m $ goes to $ 1 $ ) and counter-clockwise (indices decrease, from $ 1 $ goes to $ m $ ). 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 $ m $ ( $ 1<=m<=10^{9} $ ) — the length of the circle. The second line contains a single integer $ n $ ( $ 1<=n<=100000 $ ) — the number of friends. Last line contains an increasing sequence of $ n $ integers $ a_{i} $ ( $ 1<=a_{i}<=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.
输入输出样例
输入样例 #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