Algorithm


C. Wonderful Randomized Sum
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Learn, learn and learn again — Valera has to do this every day. He is studying at mathematical school, where math is the main discipline. The mathematics teacher loves her discipline very much and tries to cultivate this love in children. That's why she always gives her students large and difficult homework. Despite that Valera is one of the best students, he failed to manage with the new homework. That's why he asks for your help. He has the following task. A sequence of n numbers is given. A prefix of a sequence is the part of the sequence (possibly empty), taken from the start of the sequence. A suffix of a sequence is the part of the sequence (possibly empty), taken from the end of the sequence. It is allowed to sequentially make two operations with the sequence. The first operation is to take some prefix of the sequence and multiply all numbers in this prefix by  - 1. The second operation is to take some suffix and multiply all numbers in it by  - 1. The chosen prefix and suffix may intersect. What is the maximum total sum of the sequence that can be obtained by applying the described operations?

Input

The first line contains integer n (1 ≤ n ≤ 105) — amount of elements in the sequence. The second line contains n integers ai ( - 104 ≤ ai ≤ 104) — the sequence itself.

Output

The first and the only line of the output should contain the answer to the problem.

Examples
input
Copy
3
-1 -2 -3
output
Copy
6
input
Copy
5
-4 2 0 5 0
output
Copy
11
input
Copy
5
-1 10 -5 10 -2
output
Copy
18



 

Code Examples

#1 Code Example with C++ Programming

Code - C++ Programming

#include <cstdio>

int main(){

    long n; scanf("%ld\n", &n);
    long sum(0), target(0), maxsubsum(0);
    while(n--){
        long a; scanf("%ld", &a);
        sum += a;
        target += a;
        if(target < 0){target = 0;}
        if(target > maxsubsum ){maxsubsum = target;}
    }

    printf("%ld\n", 2 * maxsubsum - sum);

    return 0;
}
Copy The Code & Try With Live Editor

Input

x
+
cmd
3
-1 -2 -3

Output

x
+
cmd
6
Advertisements

Demonstration


Codeforces Solution-C. Wonderful Randomized Sum-Solution in C, C++, Java, Python

Previous
Codeforces solution 1080-B-B. Margarite and the best present codeforces solution
Next
CodeChef solution DETSCORE - Determine the Score CodeChef solution C,C+