eolymp
bolt
Try our new interface for solving problems
Problems

Destruction of buildings

Destruction of buildings

There are buildings in Baku that have failed. On their place the new buildings should be built. For this you need to destroy the old buildings.

Barish is a specialist in the destruction of roads. He has a super-robot that destroys buildings.

There are n located next to each other buildings in the city . To destroy them, Barish took advantage of his robot.

Each of the buildings consists of blocks arranged one above the other. The robot must destroy all these blocks. In one move, the robot can destroy all external blocks. From these data, find the number of robot moves to destroy all buildings.

Block is called external, if at least in one of its 4 directions (left, right, down, up) there is an empty space (for clarity, look at the picture)

Input

First line contains the number of buildings n (1n105). Next line contains the heights of buildings h1, h2, ... , hn (1hi109).

Output

Print one integer - the number of moves required to destroy all buildings.

Explanation

The picture below explains the first test case

kar.jpg

Time limit 1 second
Memory limit 128 MiB
Input example #1
6
2 1 4 6 2 2

Output example #1
3
Input example #2
7
3 3 3 1 3 3 3

Output example #2
2
Source 2019 İOİ Selection Round of Azerbaijan team