4601Elemental classification

4601   Elemental classification

题目描述

Given an array of integers of length n, a1,a2,...,an.
Now you need to classify each element of the array.
Each element is either classified into class a, class b, or class c.
Let the sum of all the elements of class a be suma, the sum of all the elements of class b be sumb, and the sum of all the elements of class c be sumc.
Calculate the maximum possible value of suma -sumb-sumc.
If the number of elements of a class is 0, then the sum of the elements of that class is considered to be 0.


输入格式:

The first line contains the integer n.
The second line contains n integers a1,a2,...,an.

输出格式:

Output an integer representing the maximum possible value of suma - sumb - sumc.
All test points satisfy 1 ≤ n ≤ 100000, -100000 ≤ ai ≤ 100 000
输入样例 复制
6
16 23 16 15 42 8
输出样例 复制
120

说明

4
6
通过提交
时空限制1000ms/128mb
题目来源
评测方式在线评测
题目类型
难        度