LUOGU P1503 鬼子进村

Posted sdfzsyq

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LUOGU P1503 鬼子进村相关的知识,希望对你有一定的参考价值。

传送门

 

解题思路

平衡树,支持插入,删除,找前驱后继,set水过。

 

技术分享图片
#include<iostream>
#include<cstdio>
#include<cstring>
#include<set>

using namespace std;
const int MAXN = 50005;

inline int rd(){
    int x=0,f=1;char ch=getchar();
    while(!isdigit(ch)) {f=ch==-?0:1;ch=getchar();}
    while(isdigit(ch))  {x=(x<<1)+(x<<3)+ch-0;ch=getchar();}
    return f?x:-x;
}

int n,m,stk[MAXN],top;
set<int> S;
set<int>::iterator it,it1;

int main(){
    n=rd(),m=rd();char c;int x;
    S.insert(0),S.insert(n+1);
    while(m--){
        c=getchar();
        while(c<A || c>Z) c=getchar();
        if(c==R) {S.erase(stk[top]);top--;continue;}
        x=rd();
        if(c==D) S.insert(x),stk[++top]=x;
        else{
            if(S.find(x)!=S.end()) {puts("0");continue;}
            it=S.lower_bound(x);it1=it;it1--;
            printf("%d
",(*it)-(*it1)-1);
        }
    }
    return 0;
}
View Code

 

以上是关于LUOGU P1503 鬼子进村的主要内容,如果未能解决你的问题,请参考以下文章

题解Luogu P1503 鬼子进村

洛谷—— P1503 鬼子进村

洛谷 P1503 鬼子进村

P1503 鬼子进村

luogu1503

[洛谷1053] 鬼子进村