3154.Artem and Array

Time Limit: 1s Memory Limit: 256MB

Artem has an array of n positive integers. Artem decided to play with it. The game consists of n moves. Each move goes like this. Artem chooses some element of the array and removes it. For that, he gets min(a,b) points, where a and b are numbers that were adjacent with the removed number. If the number doesn't have an adjacent number to the left or right, Artem doesn't get any points.

After the element is removed, the two parts of the array glue together resulting in the new array that Artem continues playing with. Borya wondered what maximum total number of points Artem can get as he plays this game.

Input Format(From the terminal/stdin)

The first line contains a single integer n (1 \le n \le 5 \cdot 105) - the number of elements in the array. The next line contains n integers ai (1 \le ai \le 106) - the values of the array elements.

Output Format(To the terminal/stdout)

In a single line print a single integer - the maximum number of points Artem can get.

Sample Input 1

Copy
5
3 1 5 2 6
 \n
 · · · · \n

Sample Output 1

Copy
11
  \n

Sample Input 2

Copy
5
1 2 3 4 5
 \n
 · · · · \n

Sample Output 2

Copy
6
 \n

Sample Input 3

Copy
5
1 100 101 100 1
 \n
 ·   ·   ·   · \n

Sample Output 3

Copy
102
   \n

Submit

请先 登录

© 2025 FAQs