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

51nod 1423 最大二“货” 单调栈

时间:2018-01-30 16:53:46      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:string   eve   can   pac   define   pen   ret   algo   cstring   

利用单调栈,高效求出每个区间内的最大值和次大值的亦或值。

先正向扫描,利用单调递减栈,若当前栈为空栈,则直接压入栈中,若为非空栈,弹出栈顶元素,每弹出一个元素,则求一次亦或值,保留最大值

接着进行反向扫描,过程与上相似。

技术分享图片
#include<stdio.h>
#include<math.h>
#include<cstring>
#include<stack>
#include<iostream>
#include<algorithm>
#include<queue>
#define MAXSIZE 100005
#define LL long long

using namespace std;
const LL INF=1e19;

LL a[MAXSIZE];
int s[MAXSIZE];

int main()
{
    int n,top;
    LL maxn = 0;
    scanf("%d",&n);
    for(int i=1;i<=n;i++)
        scanf("%lld",&a[i]);
    a[0] = a[n+1] = 0;
    top = 0;
    for(int i=1;i<=n+1;i++)
    {
        if(top==0)
        {
            s[++top] = i;
        }

        else
        {
            while(top>=1 && a[s[top]] < a[i])
            {
                maxn = max(maxn,a[i]^a[s[top]]);
                top--;
            }
            maxn = max(maxn,a[i]^a[s[top]]);
            s[++top] = i;
        }
    }

    for(int i=n;i>=0;i--)
    {
        if(top==0)
        {
            s[++top] = i;
        }

        else
        {
            while(top>=1 && a[s[top]] < a[i])
            {
                maxn = max(maxn,a[i]^a[s[top]]);
                top--;
            }
            maxn = max(maxn,a[i]^a[s[top]]);
            s[++top] = i;
        }
    }
    printf("%lld\n",maxn);
    return 0;
}
View Code

 

51nod 1423 最大二“货” 单调栈

标签:string   eve   can   pac   define   pen   ret   algo   cstring   

原文地址:https://www.cnblogs.com/alan-W/p/8383926.html

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