printРабочее место участника

printЗадачи

1827. Apples

Ограничения: время – 1s/2s, память – 64MiB Ввод: input.txt или стандартный ввод Вывод: output.txt или стандартный вывод copy
Послать решение Blockly Посылки Темы Где Обсудить (0)

Mirko has recently discovered an old video game. The screen of this game is divided into `N` columns. At the bottom of the screen, there is an `M`-columns-wide boat (`M\ <\ N`). The player can move this boat left or right during the game, but the boat must remain completely within the screen at all times. The boat initially occupies the leftmost `M` columns.
Apples are being dropped from the top of the screen. Each apple starts its fall at the top of one of the `N` columns, falling straight down until it reaches the bottom of the screen. The next apple starts its fall just after the current one has reached the bottom.
An apple is said to be picked up if the boat is placed so that it occupies the column down which the apple is falling when it reaches the bottom. The goal of the game is to pick up all of the apples, in a way that minimizes the distance that the boat must travel.
The first line of input contains two space separated integers `N` and `M` (`1\ ≤\ M\ <\ N\ ≤\ 10`). The second line of input contains an integer `J` (`1\ ≤\ J\ ≤\ 20`), the number of falling apples. The following `J` lines contain the column positions of those apples, in the order in which they will fall.
The only line of output must contain the minimal distance that the boat must travel in order to pick up all the apples.

Sample Input #1

5 1 
3 
1 
5 
3 

Sample Output #1

6

Sample Input #2

5 2 
3 
1 
5 
3 

Sample Output #2

4
Source: COCI 2011/2012
loading