BZOJ1012:[JSOI2008]最大数

浅谈栈:https://www.cnblogs.com/AKMer/p/10278222.html

题目传送门:https://lydsy.com/JudgeOnline/problem.php?id=1012

因为询问的是最大值,我们可以考虑把”在更后面有比这个数大的数“的数删掉。

那么就是单调栈维护了,然后对于后面\(limit\)个数字里最大值可以在栈上二分这个位置。

时间复杂度:\(O(n)\)

空间复杂度:\(O(n)\)

代码如下:

#include <cstdio>
#include <algorithm>
using namespace std;
typedef pair<int,int> pii;
#define ff first
#define ss second

const int maxn=2e5+5;

char opt[5];
pii stk[maxn];
int top,n,lstans,pps,cnt;

int read() {
    int x=0,f=1;char ch=getchar();
    for(;ch<'0'||ch>'9';ch=getchar())if(ch=='-')f=-1;
    for(;ch>='0'&&ch<='9';ch=getchar())x=x*10+ch-'0';
    return x*f;
}

int main() {
    n=read(),pps=read();
    for(int i=1;i<=n;i++) {
        scanf("%s",opt+1);
        if(opt[1]=='Q') {
            int limit=read();
            int l=1,r=top;
            while(l<r) {
                int mid=(l+r)>>1;
                if(stk[top].ss-stk[mid].ss+1<=limit)r=mid;
                else l=mid+1;
            }
            lstans=stk[r].ff;
            printf("%d\n",lstans);
        }
        else {
            int x=(read()+lstans)%pps;
            while(top&&stk[top].ff<=x)top--;
            stk[++top]=make_pair(x,++cnt);
        }
    }
    return 0;
}

转载于:https://www.cnblogs.com/AKMer/p/10284209.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值