您的位置:首页 > 其它

Codeforces 809A Do you want a date?

2017-06-01 20:34 295 查看
A. Do you want a date?time limit per test2 secondsmemory limit per test256 megabytesinputstandard inputoutputstandard outputLeha 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.
InputThe 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.
OutputPrint a single integer — the required sum modulo 109 + 7.
ExamplesInput
2
4 7
Output
3
Input
34 3 1
Output
9
NoteThere 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.

比起官方题解 这做法略复杂

不难得到一个O(n2)算法

首先对xi排序,考虑枚举i,j,当F(a)=xj−xi时,对任意xk|i<k<j有选/不选2种情况,a一共有2j−i−1种情况

显然会TLE

考虑d(i)=∑nj=iF(xj,xj+1,...,xn)

d(i)=d(i+1)∗2+(1+2+22+23+...2n−i−1)∗(xi+1−xi)

d(n)=0

#include<stdio.h>
#include <iostream>
#include<stdlib.h>
#include<algorithm>
#include<vector>
#include<deque>
#include<map>
#include<set>
#include<queue>
#include<math.h>
#include<string.h>
#include<string>

using namespace std;
#define ll long long
#define pii pair<int,int>

const int inf = 1e9 + 7;

const int N = 5e5+5;

int a
;

ll slove(int n){
sort(a+1,a+n+1);
ll ans=0;
ll dt=0;
ll t=1;
for(int i=n-1;i>=1;--i){
ll tmp=dt+t*(a[i+1]-a[i]);
ans+=tmp;
ans%=inf;
dt=(tmp*2)%inf;
t=(2*t+1)%inf;
}
return ans;
}

int main()
{
//freopen("/home/lu/Documents/r.txt","r",stdin);
//freopen("/home/lu/Documents/w.txt","w",stdout);
int n;
while(~scanf("%d",&n)){
for(int i=1;i<=n;++i){
scanf("%d",&a[i]);
}
printf("%I64d\n",slove(n));
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  codeforces