#TENKA12018C. Align

Align

Score : 400400 points

Problem Statement

You are given NN integers; the ii-th of them is AiA_i. Find the maximum possible sum of the absolute differences between the adjacent elements after arranging these integers in a row in any order you like.

Constraints

  • 2N1052 \leq N \leq 10^5
  • 1Ai1091 \leq A_i \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1

::

ANA_N

Output

Print the maximum possible sum of the absolute differences between the adjacent elements after arranging the given integers in a row in any order you like.

5
6
8
1
2
3
21

When the integers are arranged as 3,8,1,6,23,8,1,6,2, the sum of the absolute differences between the adjacent elements is 38+81+16+62=21|3 - 8| + |8 - 1| + |1 - 6| + |6 - 2| = 21. This is the maximum possible sum.

6
3
1
4
1
5
9
25
3
5
5
1
8