Problem10971--Codility - StoneWall

10971: Codility - StoneWall

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

You are going to build a stone wall. The wall should be straight and N meters long, and its thickness should be constant; however, it should have different heights in different places. The height of the wall is specified by an array H of N positive integers. H[I] is the height of the wall from I to I+1 meters to the right of its left end. In particular, H[0] is the height of the wall's left end and H[N−1] is the height of the wall's right end.
The wall should be built of cuboid stone blocks (that is, all sides of such blocks are rectangular). Your task is to compute the minimum number of blocks needed to build the wall.

Input

Write an efficient algorithm for the following assumptions:
  • N is an integer within the range [1..100,000];
  • each element of array H is an integer within the range [1..1,000,000,000].

Output

returns the minimum number of blocks needed to build it.

Sample 1 Input

9
8 8 5 7 9 8 7 4 8

Sample 1 Output

7

Sample 2 Input

9
8 8 5 7 9 9 7 4 8

Sample 2 Output

6

HINT

Codility.

Source/Category