ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

《TZOJ4244:Sum》

2020-08-28 14:00:34  阅读:191  来源: 互联网

标签:const int Sum Mx TZOJ4244 rg top define


主要在于对每个点贡献的思考。

单独看所有的方案数:每个点的贡献就是他是最大值的方案数*他的值 - 他是最小值的方案数*他的值。

对于最大值的方案数:我们找到他的左边第一个比他大的点L,右边第一个比他大的点r。

然后这个值可以分为两部分。两边分开独立的。i-L  + r-i。

和两边组合形成的方案数(i-L) + (r-i)。具体的边界是否要减1,按记得位置修改下就行。

那么求最小值也是一样的。

这里的话显然就是一个单调递增栈和单调递减栈来找左右的位置。

然后为了不特殊处理最后还在栈中的元素,我们在n+1位置都赋上一个特殊值即可

// Author: levil
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
typedef pair<int,int> pii;
const int N = 3e5+5;
const int M = 12005;
const LL Mod = 2008;
#define rg register
#define pi acos(-1)
#define INF 1e9
#define CT0 cin.tie(0),cout.tie(0)
#define IO ios::sync_with_stdio(false)
#define dbg(ax) cout << "now this num is " << ax << endl;
namespace FASTIO{
    inline LL read(){
        LL x = 0,f = 1;char c = getchar();
        while(c < '0' || c > '9'){if(c == '-') f = -1;c = getchar();}
        while(c >= '0' && c <= '9'){x = (x<<1)+(x<<3)+(c^48);c = getchar();}
        return x*f;
    }
    void print(int x){
        if(x < 0){x = -x;putchar('-');}
        if(x > 9) print(x/10);
        putchar(x%10+'0');
    }
}
using namespace FASTIO;
void FRE(){
/*freopen("data1.in","r",stdin);
freopen("data1.out","w",stdout);*/}

int a[N],S[N];
int Mx[N][2],Mi[N][2];//左-右
int main()
{
    int n;n = read();
    for(rg int i = 1;i <= n;++i) a[i] = read();
    int top = 0;
    a[n+1] = INF;
    for(rg int i = 1;i <= n+1;++i)//比它大
    {
        while(top != 0 && a[i] > a[S[top]])
        {
            if(top != 0) Mx[S[top]][0] = S[top-1];
            Mx[S[top]][1] = i;
            --top;
        }
        S[++top] = i;
    }
    LL sum1 = 0,sum2 = 0;
    for(rg int i = 1;i <= n;++i)
    {
        LL ma = (i-Mx[i][0]-1)+(Mx[i][1]-i-1);//左,右的单独方案数
        ma += 1LL*(i-Mx[i][0]-1)*(Mx[i][1]-i-1);
        sum1 += ma*a[i];
    }
    top = 0,a[n+1] = -1;
    for(rg int i = 1;i <= n+1;++i)
    {
        while(top != 0 && a[i] < a[S[top]])
        {
            if(top != 0) Mi[S[top]][0] = S[top-1];
            Mi[S[top]][1] = i;
            --top;
        }
        S[++top] = i;
    }
    for(rg int i = 1;i <= n;++i)
    {
        LL ma = (i-Mi[i][0]-1)+(Mi[i][1]-i-1);
        ma += 1LL*(i-Mi[i][0]-1)*(Mi[i][1]-i-1);
        sum2 += ma*a[i];
    }
    LL ans = sum1-sum2;
    printf("%lld\n",ans);
    system("pause");
}
View Code

 

标签:const,int,Sum,Mx,TZOJ4244,rg,top,define
来源: https://www.cnblogs.com/zwjzwj/p/13577091.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有