[Agc005D/At2060] Minimum Sum - 单调栈

Posted mollnn

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Agc005D/At2060] Minimum Sum - 单调栈相关的知识,希望对你有一定的参考价值。

鉴于早上那题让我怀疑单调栈白学,特意来复习下单调栈

题意

技术图片

考虑按照每个元素对答案的贡献来统计,那么我们只需要找到每个元素左边右边第一个比它小的就可

这题给的又是排列,简直不能再良心

#include <bits/stdc++.h>
using namespace std;
#define int long long
const int N = 1000005;

int s[N],top,a[N],l[N],r[N],n,ans;

signed main() {
    cin>>n;
    for(int i=1;i<=n;i++) {
        cin>>a[i];
    }
    for(int i=1;i<=n;i++) {
        while(top && a[i]<a[s[top]]) r[s[top]]=i, --top;
        s[++top]=i;
    }
    while(top) r[s[top]]=n+1, --top;
    for(int i=n;i>=1;--i) {
        while(top && a[i]<a[s[top]]) l[s[top]]=i, --top;
        s[++top]=i;
    }
    while(top) l[s[top]]=0, --top;
    for(int i=1;i<=n;i++) {
        ans += a[i] * (r[i]-i) * (i-l[i]);
    }
    cout<<ans;
}

以上是关于[Agc005D/At2060] Minimum Sum - 单调栈的主要内容,如果未能解决你的问题,请参考以下文章

[AGC005]:F - Many Easy Problem

题解-Atcoder_agc005D ~K Perm Counting

AGC005F - Many Easy Problems

[题解] [AGC005F] Many Easy Problems

agc005d~K Perm Counting

AGC 005D.~K Perm Counting(容斥 DP 二分图)