#abc140e. [abc140_e]Second Sum

[abc140_e]Second Sum

Problem Statement

Given is a permutation PP of 1,2,ldots,N\\{1, 2, \\ldots, N\\}.

For a pair (L,R)(1leLltRleN)(L, R) (1 \\le L \\lt R \\le N), let XL,RX_{L, R} be the second largest value among PL,PL+1,ldots,PRP_L, P_{L+1}, \\ldots, P_R.

Find $\\displaystyle \\sum_{L=1}^{N-1} \\sum_{R=L+1}^{N} X_{L,R}$.

Constraints

  • 2leNle1052 \\le N \\le 10^5
  • 1lePileN1 \\le P_i \\le N
  • PineqPjP_i \\neq P_j (ineqj)(i \\neq j)
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN P1P_1 P2P_2 ldots\\ldots PNP_N

Output

Print $\\displaystyle \\sum_{L=1}^{N-1} \\sum_{R=L+1}^{N} X_{L,R}$.


Sample Input 1

3
2 3 1

Sample Output 1

5

X1,2=2,X1,3=2X_{1, 2} = 2, X_{1, 3} = 2, and X2,3=1X_{2, 3} = 1, so the sum is 2+2+1=52 + 2 + 1 = 5.


Sample Input 2

5
1 2 3 4 5

Sample Output 2

30

Sample Input 3

8
8 2 7 3 4 5 6 1

Sample Output 3

136