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

Codeforces 5E Bindian Signalizing

时间:2014-06-29 23:39:56      阅读:393      评论:0      收藏:0      [点我收藏+]

标签:blog   http   get   2014   os   name   

题目链接:点击打开链接


#include<stdio.h>
#include<iostream>
#include<string.h>
#include<set>
#include<vector>
#include<map>
#include<math.h>
#include<queue>
#include<string>
#include<stdlib.h>
#include<algorithm>
using namespace std;
#define N 1000005
#define ll __int64
int n;
int a[N],b[N];
int sx[N], sy[N];
int main(){
	int i, u, v;
	while(~scanf("%d",&n)){
		int maxx = 0;
		for(i=0;i<n;i++){scanf("%d",&a[i]); if(a[i]>a[maxx])maxx = i;}
		int dep = 0;
		for(i=maxx; i<n;i++)b[++dep] = a[i];
		for(i=0;i<maxx; i++)b[++dep] = a[i];
		ll ans = 0;
		int top = 0;
		for(i = 1; i <= n; i++) {
			while(top && b[i]>sx[top-1])ans+=sy[--top];
			if(!top){
				sx[top] = b[i];
				sy[top++] = 1;
				continue;
			}
			if(sx[top-1]==b[i])
			{
				ans += sy[top-1];
				sy[top-1]++;
				if(top>1)ans++;
			}
			else {
				ans++;
				sx[top] = b[i];
				sy[top++] = 1;
			}
		}
		while(top>2)ans += sy[--top];
		if(top==2){
			top--;
			if(sy[top-1] > 1)ans+=sy[top];
		}
		cout<<ans<<endl;
	}
	return 0;
}


Codeforces 5E Bindian Signalizing,布布扣,bubuko.com

Codeforces 5E Bindian Signalizing

标签:blog   http   get   2014   os   name   

原文地址:http://blog.csdn.net/qq574857122/article/details/35553781

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