CodeForces - 810C(规律)

C. Do you want a date?
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Leha decided to move to a quiet town Vičkopolis, because he was tired by living in Bankopolis. Upon arrival he immediately began to expand his network of hacked computers. During the week Leha managed to get access to n computers throughout the town. Incidentally all the computers, which were hacked by Leha, lie on the same straight line, due to the reason that there is the only one straight street in Vičkopolis.

Let's denote the coordinate system on this street. Besides let's number all the hacked computers with integers from 1 to n. So the i-th hacked computer is located at the point xi. Moreover the coordinates of all computers are distinct.

Leha is determined to have a little rest after a hard week. Therefore he is going to invite his friend Noora to a restaurant. However the girl agrees to go on a date with the only one condition: Leha have to solve a simple task.

Leha should calculate a sum of F(a) for all a, where a is a non-empty subset of the set, that consists of all hacked computers. Formally, let's denote A the set of all integers from 1 to n. Noora asks the hacker to find value of the expression . Here F(a) is calculated as the maximum among the distances between all pairs of computers from the set a. Formally, . Since the required sum can be quite large Noora asks to find it modulo 109 + 7.

Though, Leha is too tired. Consequently he is not able to solve this task. Help the hacker to attend a date.

Input

The first line contains one integer n (1 ≤ n ≤ 3·105) denoting the number of hacked computers.

The second line contains n integers x1, x2, ..., xn (1 ≤ xi ≤ 109) denoting the coordinates of hacked computers. It is guaranteed that all xi are distinct.

Output

Print a single integer — the required sum modulo 109 + 7.

Examples
Input
2
4 7
Output
3
Input
3
4 3 1
Output
9
Note

There are three non-empty subsets in the first sample test:, and . The first and the second subset increase the sum by 0 and the third subset increases the sum by 7 - 4 = 3. In total the answer is 0 + 0 + 3 = 3.

There are seven non-empty subsets in the second sample test. Among them only the following subsets increase the answer: , , , . In total the sum is (4 - 3) + (4 - 1) + (3 - 1) + (4 - 1) = 9.

题意就是n 个数 组成的2^n个集合  问每个集合的最大值减去最小值得和对1e9取模

其实 这题就是去a[i]这个数要加多少次 减多少次

a[1] a[2] a[3] a[4] a[5].....a[n] 排序后

对于a[1]  需要减2^0+2^1+2^2.....2^(n-i-1)  就是相当于(i j)(开区间)有多少个数

加多少个a[i]也可以推  2^0+2^1+...+2^(i-2)

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstdlib>
 4 #include<cctype>
 5 #include<cmath>
 6 #include<cstring>
 7 #include<map>
 8 #include<stack>
 9 #include<set>
10 #include<vector>
11 #include<algorithm>
12 #include<string.h>
13 typedef long long ll;
14 typedef unsigned long long LL;
15 using namespace std;
16 const int INF=0x3f3f3f3f;
17 const double eps=0.0000000001;
18 const int N=500000+10;
19 const ll mod=1e9+7;
20 ll a[N];
21 ll b[N];
22 void init(){
23     b[0]=1;
24     for(int i=1;i<=N;i++){
25         b[i]=(b[i-1]*2)%mod;
26     }
27 }
28 int main(){
29     int n;
30     init();
31     while(scanf("%d",&n)!=EOF){
32         for(int i=1;i<=n;i++)scanf("%I64d",&a[i]);
33         sort(a+1,a+n+1);
34         ll ans=0;
35         for(int i=1;i<=n;i++){
36             ans=(ans-a[i]*((b[n-i]-1))%mod+mod)%mod;
37             ans=(ans+a[i]*(b[i-1]-1)%mod)%mod;
38         }
39         cout<<ans<<endl;
40     }
41 }

 

 

posted on 2017-05-21 23:22  见字如面  阅读(444)  评论(0编辑  收藏  举报

导航