CF33C.Wonderful Randomized Sum

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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 nn 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-1 . The second operation is to take some suffix and multiply all numbers in it by 1-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?

输入格式

The first line contains integer nn ( 1<=n<=1051<=n<=10^{5} ) — amount of elements in the sequence. The second line contains nn integers aia_{i} ( 104<=ai<=104-10^{4}<=a_{i}<=10^{4} ) — the sequence itself.

输出格式

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

输入输出样例

  • 输入#1

    3
    -1 -2 -3
    

    输出#1

    6
    
  • 输入#2

    5
    -4 2 0 5 0
    

    输出#2

    11
    
  • 输入#3

    5
    -1 10 -5 10 -2
    

    输出#3

    18
    
首页