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

printЗадачи

2152. Tires

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

A factory called Gumi-Gumi is dedicated to making tires. Their carving machine is responsible for carving fillisters into the tire. The tire has `N` vertical fillisters which divide the rubber into `N+1` vertical parts. Horizontal cuts are made on each vertical part so that all parts comprising the vertical part are of equal size. The machine can make fillisters on one or more not necessarily continuous vertical sections in one cut, but it can only cut in a straight line.
An example of a tire cutting strategy, corresponding to the third sample test.

28858.png

The topmost and the lowest lines represent a full horizontal cut, whereas the first and the last vertical lines are the ends of the tire.
You are given the shape of the tire. Your task is to calculate the minimal possible number of cuts necessary in order to obtain such shape.
The first line of input contains the integer `N` (`1\ ≤\ N\ ≤\ 100\ 000`).
Each of the following `N+1` lines contains an integer `a_i` (`1\ ≤\ a_i\ ≤\ 100\ 000`), representing the number of parts which the `i`th vertical section should consist of.
The first and only line of output must consist of the minimal number of cuts required.

Sample Input #1

1
2
5

Sample Output #1

5

Sample Input #2

2
3
7
14

Sample Output #2

15

Sample Input #3

9
4
2
4
1
2
2
2
8
4
2

Sample Output #3

7
Source: COCI 2013/2014, contest #4
loading