A. Do you want a date?(思维)

文章讲述了黑客Leha在小镇Vičkopolis成功入侵并排列了电脑,朋友Noora提出一个计算点集内任意两点间最大距离之和的问题。通过巧妙算法,博主提供了一个O(n log n)复杂度的解决方案,要求读者理解并应用到求解问题中。
摘要由CSDN通过智能技术生成

time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard 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
inputCopy
2
4 7
outputCopy
3
inputCopy
3
4 3 1
outputCopy
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个点,第i个点坐标为xi,定义一个点集,这个点集有一个价值是这个点集里任意两个点距离的最大值。求所有点集的价值之和。
确定左端点l和右端点r,那么(xr-xl)的贡献为(xr-xl)*2^(cnt) ,cnt为l-r之间的点的个数。2 ^(cnt) 表示只包含l、r和(l,r)之间若干个点的点集个数。
但是n^2的复杂度会超时,所以考虑相邻点之间的距离对答案的贡献 。

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int N = 3e5+10;
const int mod = 1e9+7;
ll a[N],b[N],h[N],c[N];
int main()
{
    int n;
    scanf("%d",&n);
    b[0]=1,h[0]=1;
    for(int i=1;i<=n-2;i++)
    {
        b[i]=(b[i-1]*2)%mod;//计算2的次幂 
        h[i]=(h[i-1]+b[i])%mod;//前缀和 
    }
    c[1]=h[n-2];
    for(int i=2;i<n;i++)
    {
        c[i]=(c[i-1]-h[i-2]+mod)%mod;
        c[i]=(c[i]+h[n-i-1]);
    }
    for(int i=1;i<=n;i++)
    {
        scanf("%lld",&a[i]);
    }
    sort(a+1,a+1+n);
    ll ans=0;
    for(int i=1;i<n;i++)
    {
        ans=(ans+(a[i+1]-a[i])%mod*c[i]%mod)%mod;
    }
    printf("%lld",ans);
    return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值