单调栈的基础练习
然而人傻,想复杂了,知道是单调栈,但是在看Qer神犇题解之前,我用单调栈维护的是每个山峰可以看到的山峰总数还有一个栈维护的是后缀和????(mdzz)
反正我就是个智障啊
明明只用维护当前单调递减的山峰序列即可
给Qer大神跪了‘
代码如下
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <stack>
#define maxn 15005
using namespace std;
typedef long long LL;
LL n;
LL sum,ans;
LL num[maxn];
stack<LL > s;
void rd(LL &x)
{
scanf("%lld",&x);
}
inline void dosomething()
{
for(LL i = 1;i <= n;i++)
{
rd(num[i]);
if(s.empty()){s.push(num[i]);}
else
{
sum++;
ans += sum;
while(s.size())
{
if(s.top() < num[i])
{
sum--;
s.pop();
}
else
break;
}
s.push(num[i]);
}
}
printf("%lld\n",ans);
}
int main()
{
rd(n);
dosomething();
return 0;
}
THE END
By Peacefuldoge