首页 > 其他 > 详细

LUOGU P1503 鬼子进村

时间:2018-09-20 19:36:44      阅读:165      评论:0      收藏:0      [点我收藏+]

传送门

 

解题思路

平衡树,支持插入,删除,找前驱后继,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\n",(*it)-(*it1)-1);
        }
    }
    return 0;
}
View Code

 

LUOGU P1503 鬼子进村

原文:https://www.cnblogs.com/sdfzsyq/p/9682810.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!