#include <cstdio>
#define queue_size 100010
using namespace std ;
int ans = 0 ;
int n , h ;
struct monotone_queue{
int line[queue_size] ;
int head ;
int tail ;
void push(int x)
{
int Ma ;
if (x < line[ tail ])
{
Ma = line [tail] ;
while ( head <= tail && x < line[ tail ] ) tail -- ;
ans += (Ma - x) ;
}
line[ ++ tail ] = x ;
}
monotone_queue()
{
line[0] = 0 ;
head = 1 ;
tail = 0 ;
}
}q ;
int main()
{
freopen("BlockNOIP2013.in", "r",stdin);
freopen("BlockNOIP2013.out","w",stdout);
q.push(0);
scanf("%d",&n) ;
for (int i = 1 ; i <= n ; i ++ )
{
scanf("%d",&h) ;
q.push(h) ;
}
q.push(0);
printf("%d\n",ans);
return 0 ;
}