洛谷 P1823 [COI2007] Patrik 音乐会的等待(单调栈)
传送门
解题思路
从前往后维护一个严格单调递减栈,在弹出元素和入栈的时候更新答案。
但是要注意两人身高相等的情况,所以要记下某元素的个数。
细节还是蛮多的。
AC代码
#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<stack>
using namespace std;
const int maxn=5e5+5;
int n,a[maxn];
long long ans;
stack<pair<int,int> > q;
int main(){
ios::sync_with_stdio(false);
cin>>n;
for(int i=1;i<=n;i++){
cin>>a[i];
while(!q.empty()&&a[q.top().first]<=a[i]){
if(a[q.top().first]==a[i]){
ans+=q.top().second;
q.top().second++;
if(q.size()>1) ans++;
break;
}
ans+=q.top().second;
q.pop();
}
if(!q.empty()){
if(a[q.top().first]==a[i]){
continue;
}
ans++;
}
q.push(make_pair(i,1));
}
cout<<ans;
return 0;
}