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

POJ 3250 Bad Hair Day 单调栈

时间:2014-10-15 21:33:21      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:blog   io   for   sp   2014   on   log   html   amp   

维护一个单调递减的栈 每次家进栈首的牛必定可以被其他栈里面的牛看到

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

标签:blog   io   for   sp   2014   on   log   html   amp   

原文地址:http://blog.csdn.net/u011686226/article/details/40116219

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