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

LUOGU P1503 鬼子进村

时间:2018-09-20 19:50:43      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:include   find   end   closed   nbsp   org   class   opened   href   

传送门

 

解题思路

平衡树,支持插入,删除,找前驱后继,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 鬼子进村

标签:include   find   end   closed   nbsp   org   class   opened   href   

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

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