POJ 3250 Bad Hair Day 单调栈

Posted mfmdaoyou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了POJ 3250 Bad Hair Day 单调栈相关的知识,希望对你有一定的参考价值。

维护一个单调递减的栈 每次家进栈首的牛必然能够被其它栈里面的牛看到

#include <cstdio>
#include <cstring>
using namespace std;
const int maxn = 80010;
typedef unsigned long long LL;
int a[maxn], s[maxn];
int main()
{
	int n;
	scanf("%d", &n);
	for(int i = 1; i <= n; i++)
		scanf("%d", &a[i]);
	int top = 0;
	LL ans = 0;
	for(int i = 1; i <= n; i++)
	{
		while(top && a[i] >= a[s[top]])
			top--;
		ans += top;
		s[++top] = i;
	}	
	printf("%llu\n", ans);
	return 0;
}


以上是关于POJ 3250 Bad Hair Day 单调栈的主要内容,如果未能解决你的问题,请参考以下文章

POJ 3250 Bad Hair Day 单调栈

poj 3250 Bad Hair Day 单调栈入门

POJ3250[USACO2006Nov]Bad Hair Day[单调栈]

poj 3250 bad hair day

机试练习02:poj3250——Bad Hair Day

poj 3250 Bad Hair Day