欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

P1198 [JSOI2008]最大数 · 线段树

程序员文章站 2022-07-14 08:31:39
...

题解

线段树
动态查询
初始区间范围为0,都不需要建树build


P1198 [JSOI2008]最大数 · 线段树


#include <bits/stdc++.h>
using namespace std;
#define lson l,mid,rt<<1
#define rson mid+1,r,rt<<1|1
const int N=1e6+10;
const int INF=0x3f3f3f3f;
int a[N];
int n,m,d;
char op;
void update(int pos,int val,int l,int r,int rt){
    if(l==r){
        a[rt]=val%d;
        return ;
    }
    int mid=(l+r)>>1;
    if(pos<=mid)update(pos,val,lson);
    else update(pos,val,rson);
    a[rt]=max(a[rt<<1],a[rt<<1|1]);//pushUp rt
}

int query(int x,int y,int l,int r,int rt){
    if(x<=l && r<=y){
        return a[rt];
    }
    int mid=l+r>>1;
    int res=-INF;
    if(x<=mid)res=max(res,query(x,y,lson));
    if(y>mid) res=max(res,query(x,y,rson));
    return res;
}
int main(){
    memset(a, -INF, sizeof(a));//有负数存在 需要初始化最小值

    int t=0;
    cin>>m>>d;
    for (int i = 1,x; i <= m; ++i) {
        cin>>op>>x;
        if(op=='A'){
            x=(x+t)%d;
            n++;
            update(n,x,1,m,1);
            //update(n,x,1,n,1)是错的 线段树整个区间范围不可更改 最多执行m次插入
        }else{
            t=query(n-x+1,n,1,m,1);
            cout <<t << endl;
        }
    }
    return 0;
}
相关标签: 洛谷