Traveling Salesman around Lake

AtCoder
IDabc160_c
Time2000ms
Memory256MB
Difficulty
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: $K$ $N$ $A_1$ $A_2$ $...$ $A_N$ [samples]
Samples
Input #1
20 3
5 10 15
Output #1
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$.
Input #2
20 3
0 5 15
Output #2
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$.
API Response (JSON)
{
  "problem": {
    "name": "Traveling Salesman around Lake",
    "description": {
      "content": "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 a",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc160_c"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "There is a circular pond with a perimeter of $K$ meters, and $N$ houses around them.\nThe $i$\\-th house is built at a distance of $A_i$ meters from the northmost point of the pond, measured clockwise a...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments