#ABC140C. Maximal Value

Maximal Value

题目描述

There is an integer sequence AA of length NN whose values are unknown.

Given is an integer sequence BB of length N1N-1 which is known to satisfy the following:

Bimax(Ai,Ai+1) B_i \geq \max(A_i, A_{i+1})

Find the maximum possible sum of the elements of AA.

有一个长度为 NN 的整数序列 AA ,其值未知。

已知长度为 N1N-1 的整数序列 BB 满足以下条件:

Bimax(Ai,Ai+1) B_i \geq \max(A_i, A_{i+1})

AA 中各元素可能的最大和。

输入格式

输入内容按以下格式标准输入:

NN
B1B_1 B2B_2 ...... BN1B_{N-1}

输出格式

打印 AA 中元素的最大可能和。

样例 #1

样例输入 #1

3
2 5

样例输出 #1

9

样例 #2

样例输入 #2

2
3

样例输出 #2

6

样例 #3

样例输入 #3

6
0 153 10 10 23

样例输出 #3

53

说明

数据规模与约定

  • 所有输入值均为整数。
  • 2N1002 \leq N \leq 100
  • 0Bi1050 \leq B_i \leq 10^5

样例 11 解释

例如, AA 可以是( 22 , 11 , 55 ),( 1-1 , 2-2 , 3-3 ),或者( 22 , 22 , 55 )。在这些候选数中, AA = ( 22 , 22 , 55 ) 的和可能最大。