#P1421E. Swedish Heroes

    ID: 2908 Type: RemoteJudge 2000ms 256MiB Tried: 0 Accepted: 0 Difficulty: 10 Uploaded By: Tags>brute forcedpimplementation*2700

Swedish Heroes

Description

While playing yet another strategy game, Mans has recruited nn Swedish heroes, whose powers which can be represented as an array aa.

Unfortunately, not all of those mighty heroes were created as capable as he wanted, so that he decided to do something about it. In order to accomplish his goal, he can pick two consecutive heroes, with powers aia_i and ai+1a_{i+1}, remove them and insert a hero with power (ai+ai+1)-(a_i+a_{i+1}) back in the same position.

For example if the array contains the elements [5,6,7,8][5, 6, 7, 8], he can pick 66 and 77 and get [5,(6+7),8]=[5,13,8][5, -(6+7), 8] = [5, -13, 8].

After he will perform this operation n1n-1 times, Mans will end up having only one hero. He wants his power to be as big as possible. What's the largest possible power he can achieve?

The first line contains a single integer nn (1n2000001 \le n \le 200000).

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (109ai109-10^9 \le a_i \le 10^9) — powers of the heroes.

Print the largest possible power he can achieve after n1n-1 operations.

Input

The first line contains a single integer nn (1n2000001 \le n \le 200000).

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (109ai109-10^9 \le a_i \le 10^9) — powers of the heroes.

Output

Print the largest possible power he can achieve after n1n-1 operations.

Sample Input 1

4
5 6 7 8

Sample Output 1

26

Sample Input 2

5
4 -5 9 -2 1

Sample Output 2

15

Note

Suitable list of operations for the first sample:

[5,6,7,8][11,7,8][11,15][26][5, 6, 7, 8] \rightarrow [-11, 7, 8] \rightarrow [-11, -15] \rightarrow [26]