码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 3250 Bad Hair Day 单调栈

时间:2017-06-04 10:52:27      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:ring   unsigned   content   space   art   int   pac   code   post   

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

#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 单调栈

标签:ring   unsigned   content   space   art   int   pac   code   post   

原文地址:http://www.cnblogs.com/mfmdaoyou/p/6939649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!