#P1444B. Divide and Sum
Divide and Sum
No submission language available for this problem.
Description
You are given an array of length . Consider a partition of array into two subsequences and of length each (each element of array should be in exactly one subsequence: either in or in ).
Let's sort in non-decreasing order, and in non-increasing order, we can denote the sorted versions by and , respectively. Then the cost of a partition is defined as .
Find the sum of over all correct partitions of array . Since the answer might be too big, print its remainder modulo .
The first line contains a single integer ().
The second line contains integers () — elements of array .
Print one integer — the answer to the problem, modulo .
Input
The first line contains a single integer ().
The second line contains integers () — elements of array .
Output
Print one integer — the answer to the problem, modulo .
Samples
Note
Two partitions of an array are considered different if the sets of indices of elements included in the subsequence are different.
In the first example, there are two correct partitions of the array :
- , , then , , ;
- , , then , , .
In the second example, there are six valid partitions of the array :
- , (elements with indices and in the original array are selected in the subsequence );
- , ;
- , (elements with indices and are selected in the subsequence );
- , ;
- , ;
- , (elements with indices and are selected in the subsequence ).