题目描述
There are N integers, A1,A2,...,AN, 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 i satisfying 1≤i≤N−1. Multiply both Ai and Ai+1 by −1.
Let B1,B2,...,BN be the integer sequence after your operations.
Find the maximum possible value of B1+B2+...+BN.
有 N 个整数, A1,A2,...,AN ,按如下顺序排列在一行中。
你可以对这个整数序列进行任意次数的以下运算:
操作:选择一个满足 1≤i≤N−1 的整数 i 。将 Ai 和 Ai+1 同时乘以 −1 。
让 B1,B2,...,BN 成为运算后的整数序列。
求 B1+B2+...+BN 的最大可能值。
输入格式
输入内容按以下格式标准输入:
N
A1 A2 ... AN
输出格式
打印 B1+B2+...+BN 的最大可能值。
样例 #1
样例输入 #1
样例输出 #1
样例 #2
样例输入 #2
样例输出 #2
样例 #3
样例输入 #3
样例输出 #3
说明
数据规模与约定
- 所有输入值均为整数。
- 2≤N≤105
- −109≤Ai≤109
样例 1 解释
如果我们执行如下操作
- 选择 1 为 i ,则序列变为 10,−5,−4 。
- 选择 2 为 i ,序列变为 10,5,4 。
得出 B1=10,B2=5,B3=4 。这里的和 B1+B2+B3=10+5+4=19 是最大可能的结果。
样例 3 解释
输出可能不适合 32 (位)整数类型。