CF1421E.Swedish Heroes
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
While playing yet another strategy game, Mans has recruited n Swedish heroes, whose powers which can be represented as an array a .
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 ai and ai+1 , remove them and insert a hero with power −(ai+ai+1) back in the same position.
For example if the array contains the elements [5,6,7,8] , he can pick 6 and 7 and get [5,−(6+7),8]=[5,−13,8] .
After he will perform this operation n−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 n ( 1≤n≤200000 ).
The second line contains n integers a1,a2,…,an ( −109≤ai≤109 ) — powers of the heroes.
输出格式
Print the largest possible power he can achieve after n−1 operations.
输入输出样例
输入#1
4 5 6 7 8
输出#1
26
输入#2
5 4 -5 9 -2 1
输出#2
15
说明/提示
Suitable list of operations for the first sample:
[5,6,7,8]→[−11,7,8]→[−11,−15]→[26]