这是一道单调栈的问题,单调栈维护所有数的最大值。
查询操作时只需要二分找答案即可,枚举栈内的数应该也不会超时。
code:
/************************************************************** Problem: 1012 User: yekehe Language: C++ Result: Accepted Time:304 ms Memory:2384 kb ****************************************************************/ #include <cstdio> using namespace std; inline int read(){ char c;while(c=getchar(),(c<'0'||c>'9')&&c!='-');int x=0,y=1;c=='-'?y=-1:x=c-'0'; while(c=getchar(),c>='0'&&c<='9')x=x*10+c-'0';return x*y; } int m,d,stuck[200001][2],top,t,now; char c; int so(int l,int r,int x){ int mid; while(l<r){ mid=(l+r)>>1; if(stuck[mid][1]<=x)l=mid+1; else r=mid; } return l; } int main(){ m=read(),d=read();stuck[0][0]=2e9; for(int i=1;i<=m;i++){ c=getchar(); if(c=='A'){ int x=read();x=(x+t)%d; while(stuck[top][0]<x) top--; stuck[++top][0]=x; stuck[top][1]=++now; } else { int w=top,v=read(); w=so(1,top,now-v); printf("%d ",stuck[w][0]); t=stuck[w][0]; } } return 0; }
O(KM)_k为常数。