codeforces Educational Round 34 D Almost Difference

题意:给你一个数列,求出


求出所有的d(ai, aj) 的和 i和j 满足 1 <= i <= j <= n。 d(ai, aj) over all pairs (i, j) such that 1 ≤ i ≤ j ≤ n.

也就是说,每个数只能向后匹配,不能像前匹配。

一个数,它前面有m个数,后面有n 个数,它是会用n + m次的。只不过情况有两种。

我们利用map,可以很快找到有那些对于当前数特殊的数,也就是满足第二种情况的。两个数之间差为一,才会产生为零的情况(两个数相等,第一种也可以的)。

所以如果多加,那么减个一,少加,加个一。


#include<iostream>
#include<cstdio>
#include<algorithm>
#include<map>
#include<iomanip>
#include<cstdlib>
using namespace std;
typedef long long LL;
typedef long double db;//long double 精度高于18能满足本题要求
map<int, int> mp;
int main()
{
    int n;
    while(scanf("%d", &n) == 1)
    {
        mp.clear();
        LL sum = 0, ans = 0;
        for(int i = 0; i < n; i++)
        {
            int t;
            scanf("%d", &t);
            ans += 1LL * t * i;//注意这里可能会超int
            ans -= sum;
            sum += t;
            if(mp.count(t + 1))
            {
                ans += mp[t + 1];
            }
            if(mp.count(t - 1))
            {
                ans -= mp[t - 1];
            }
            mp[t]++;
        }
        cout << fixed << setprecision(0) << ans << '\n';
    }
    return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值