bzoj1012最大數maxnumber——單調棧
阿新 • • 發佈:2018-04-29
() algorithm algo HA https 代碼 lin esp ref
題目:https://www.lydsy.com/JudgeOnline/problem.php?id=1012
單調棧水題;用了一下lower_bound二分。
代碼如下:
#include<iostream> #include<cstdio> #include<algorithm> using namespace std; int m,d,len,a[200005],sta[200005],top,lst; char s[5]; int main() { scanf("%d%d",&m,&d); for(int i=1,x;i<=m;i++) { scanf("%s%d",&s,&x); if(s[0]==‘A‘) { a[++len]=(x+lst)%d; while(top&&a[sta[top]]<a[len])top--; sta[++top]=len; } else { int k=lower_bound(sta+1,sta+top+1,len-x+1)-sta;//在棧中二分位置 lst=a[sta[k]]; printf("%d\n",lst); } } return 0; }
bzoj1012最大數maxnumber——單調棧