码迷,mamicode.com
首页 > Web开发 > 详细

bzoj 1012 [JSOI2008]最大数maxnumber

时间:2017-08-17 12:58:43      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:它的   div   ++   print   printf   color   pac   main   names   

维护单调栈,每次加一个数之前,把栈顶不大于它的数弹出。

查询时二分就可以了。

#include<cstdio>
#include<algorithm>
using namespace std;
int s[200001],t=0;
int a[200001],siz=0;
int n,clz,x,las;
int main(){
    char op[5];
    scanf("%d%d",&n,&clz);
    for(int i=1;i<=n;i++){
        scanf("%s%d",op,&x);
        if(op[0]==A){
            x=(x+las)%clz;
            a[++siz]=x;
            while(t&&a[s[t]]<=x) t--;
            s[++t]=siz;
        }
        else{
            printf("%d\n",las=a[s[lower_bound(s+1,s+t+1,siz-x+1)-s]]);
        }
    }
}

 

bzoj 1012 [JSOI2008]最大数maxnumber

标签:它的   div   ++   print   printf   color   pac   main   names   

原文地址:http://www.cnblogs.com/nzher/p/7380485.html

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