#A. C - Traveling Salesman around Lake

    传统题 1000ms 256MiB

C - Traveling Salesman around Lake

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

C - Traveling Salesman around Lake

Score : $300$ points

Problem Statement

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.

Constraints

  • $2 \leq K \leq 10^6$
  • $2 \leq N \leq 2 \times 10^5$
  • $0 \leq A_1 < ... < A_N < K$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

KK NN

A1A_1 A2A_2 ...... ANA_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.


20 3
5 10 15
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$.


20 3
0 5 15
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$.

2024春季入门组刷题营(三)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-3-24 13:00
结束于
2024-3-24 15:00
持续时间
2 小时
主持人
参赛人数
10