#abc125d. [abc125_d]Flipping Signs

[abc125_d]Flipping Signs

Problem Statement

There are NN integers, A1,A2,...,ANA_1, A_2, ..., A_N, arranged in a row in this order.

You can perform the following operation on this integer sequence any number of times:

Operation: Choose an integer ii satisfying 1leqileqN11 \\leq i \\leq N-1. Multiply both AiA_i and Ai+1A_{i+1} by \-1\-1.

Let B1,B2,...,BNB_1, B_2, ..., B_N be the integer sequence after your operations.

Find the maximum possible value of B1+B2+...+BNB_1 + B_2 + ... + B_N.

Constraints

  • All values in input are integers.
  • 2leqNleq1052 \\leq N \\leq 10^5
  • \-109leqAileq109\-10^9 \\leq A_i \\leq 10^9

Input

Input is given from Standard Input in the following format:

NN A1A_1 A2A_2 ...... ANA_N

Output

Print the maximum possible value of B1+B2+...+BNB_1 + B_2 + ... + B_N.


Sample Input 1

3
-10 5 -4

Sample Output 1

19

If we perform the operation as follows:

  • Choose 11 as ii, which changes the sequence to 10,5,410, -5, -4.
  • Choose 22 as ii, which changes the sequence to 10,5,410, 5, 4.

we have B1=10,B2=5,B3=4B_1 = 10, B_2 = 5, B_3 = 4. The sum here, B1+B2+B3=10+5+4=19B_1 + B_2 + B_3 = 10 + 5 + 4 = 19, is the maximum possible result.


Sample Input 2

5
10 -4 -8 -11 3

Sample Output 2

30

Sample Input 3

11
-1000000000 1000000000 -1000000000 1000000000 -1000000000 0 1000000000 -1000000000 1000000000 -1000000000 1000000000

Sample Output 3

10000000000

The output may not fit into a 3232-bit integer type.