Codeforces 817D Imbalanced Array【思维】好题!

D. Imbalanced Array
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You are given an array a consisting of n elements. The imbalance value of some subsegment of this array is the difference between the maximum and minimum element from this segment. The imbalance value of the array is the sum of imbalance values of all subsegments of this array.

For example, the imbalance value of array [1, 4, 1] is 9, because there are 6 different subsegments of this array:

  • [1] (from index 1 to index 1), imbalance value is 0;
  • [1, 4] (from index 1 to index 2), imbalance value is 3;
  • [1, 4, 1] (from index 1 to index 3), imbalance value is 3;
  • [4] (from index 2 to index 2), imbalance value is 0;
  • [4, 1] (from index 2 to index 3), imbalance value is 3;
  • [1] (from index 3 to index 3), imbalance value is 0;

You have to determine the imbalance value of the array a.

Input

The first line contains one integer n (1 ≤ n ≤ 106) — size of the array a.

The second line contains n integers a1, a2... an (1 ≤ ai ≤ 106) — elements of the array.

Output

Print one integer — the imbalance value of a.

Example
Input
3
1 4 1
Output
9


题目大意:

让你计算所有连续子序列的最大值-最小值的和。

思路:


很显然,如果对于一个数Ai来讲,如果其有贡献的价值,要么是-Ai作为最小值,要么是Ai作为最大值。
那么Ans=ΣAi*maxn-Ai*minn.
这里maxn表示Ai作为最大值出现的次数,minn表示Ai作为最小值出现的次数。

那么考虑如何计算这个maxn和minn.

我们设定L【i】表示Ai作为最大值时,左边可以延展到的位子,R【i】表示Ai作为最大值时,右边可以延展到的位子。
那么对于Ai来讲,其maxn=(i-L【i】+1)-(R【i】-i+1);

L【i】以及R【i】都可以O(n)维护,所以这里不必要担心时间复杂度的问题。
那么求minn的过程同理相反。

Ac代码:


#include<stdio.h>
#include<string.h>
#include<math.h>
#include<iostream>
using namespace std;
#define ll __int64
int a[1000005];
int l[1000005];
int r[1000005];
int main()
{
    int n;
    while(~scanf("%d",&n))
    {
        ll output=0;
        for(int i=1;i<=n;i++)scanf("%d",&a[i]);
        for(int i=1;i<=n;i++)l[i]=r[i]=i;
        for(int i=2;i<=n;i++)
        {
            int now=i;
            while(now>1&&a[i]>=a[now-1])now=l[now-1];
            l[i]=now;
        }
        for(int i=n-1;i>=1;i--)
        {
            int now=i;
            while(now<n&&a[i]>a[now+1])now=r[now+1];
            r[i]=now;
        }
        for(int i=1;i<=n;i++)output+=(ll)a[i]*(ll)(i-l[i]+1)*(ll)(r[i]-i+1);
        for(int i=1;i<=n;i++)l[i]=r[i]=i;
        for(int i=2;i<=n;i++)
        {
            int now=i;
            while(now>1&&a[i]<=a[now-1])now=l[now-1];
            l[i]=now;
        }
        for(int i=n-1;i>=1;i--)
        {
            int now=i;
            while(now<n&&a[i]<a[now+1])now=r[now+1];
            r[i]=now;
        }
        for(int i=1;i<=n;i++)output-=(ll)a[i]*(ll)(i-l[i]+1)*(ll)(r[i]-i+1);
        printf("%I64d\n",output);
    }
}

 
 
  • 2
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值