记录编号 426659 评测结果 AAAAAAAAAA
题目名称 [JSOI 2008] 最大数 最终得分 100
用户昵称 Gravatarliuyu 是否通过 通过
代码语言 C++ 运行时间 2.105 s
提交时间 2017-07-18 15:42:50 内存使用 1.84 MiB
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. stack<int>sta;
  4. stack<int>sta1;
  5. long long m,d,t=0,n,l=1,s[200003];
  6. char a;
  7. int main(){
  8. freopen("bzoj_1012.in","r",stdin);
  9. freopen("bzoj_1012.out","w",stdout);
  10. scanf("%lld%lld",&m,&d);
  11. while(m--){
  12. //scanf("%c%d",&a,&n);
  13. cin>>a>>n;
  14. if(a=='A'){
  15. n+=t;
  16. n%=d;
  17. s[l]=n;
  18. while(!sta.empty()&&s[l]>=s[sta.top()]){sta.pop();}
  19. sta.push(l);
  20. l++;
  21. }
  22. if(a=='Q'){
  23. int now;
  24. while(!sta.empty()&&sta.top()+n>l-1){
  25. now=sta.top();
  26. sta.pop();
  27. sta1.push(now);
  28. }
  29. if(!sta1.empty())t=s[sta1.top()];
  30. printf("%lld\n",t);
  31. while(!sta1.empty()){
  32. now=sta1.top();
  33. sta1.pop();
  34. sta.push(now);
  35. }
  36. }
  37. }
  38. return 0;
  39. }