當前位置:
首頁 >
前端技术
> javascript
>内容正文
javascript
BZOJ 1012: [JSOI2008]最大数maxnumber 单调队列/线段树/树状数组/乱搞
生活随笔
收集整理的這篇文章主要介紹了
BZOJ 1012: [JSOI2008]最大数maxnumber 单调队列/线段树/树状数组/乱搞
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1012: [JSOI2008]最大數maxnumber
Time Limit: 3 Sec??Memory Limit: 162 MBSubmit: 4750??Solved: 2145
[Submit][Status][Discuss]
Description
現 在請求你維護一個數列,要求提供以下兩種操作: 1、 查詢操作。語法:Q L 功能:查詢當前數列中末尾L個數中的最大的數,并輸出這個數的值。限制:L不超過當前數列的長度。 2、 插入操作。語法:A n 功能:將n加上t,其中t是最近一次查詢操作的答案(如果還未執行過查詢操作,則t=0),并將所得結果對一個固定的常數D取模,將所得答案插入到數列的 末尾。限制:n是非負整數并且在長整范圍內。注意:初始時數列是空的,沒有一個數。
Input
第一行兩個整數,M和D,其中M表示操作的個數(M <= 200,000),D如上文中所述,滿足(0
Output
對于每一個查詢操作,你應該按照順序依次輸出結果,每個結果占一行。
Sample Input
5 100A 96
Q 1
A 97
Q 1
Q 2
Sample Output
9693
96
HINT
?
題解:
這道題就是裸的rmq題目,我推薦一種單調隊列的搞法!
搞搞搞,看代碼就知道腫么做啦~
//qscqesze #include <cstdio> #include <cmath> #include <cstring> #include <ctime> #include <iostream> #include <algorithm> #include <set> #include <vector> #include <sstream> #include <queue> #include <typeinfo> #include <fstream> #include <map> typedef long long ll; using namespace std; //freopen("D.in","r",stdin); //freopen("D.out","w",stdout); #define sspeed ios_base::sync_with_stdio(0);cin.tie(0) #define maxn 250001 #define eps 1e-9 const int inf=0x7fffffff; //無限大 //************************************************************************************** int a[maxn],max_num[maxn],t=0,ans=0; int main() {int n,d;scanf("%d%d",&n,&d);char ch[3];int g;while(n--){scanf("%s%d",ch,&g);if(ch[0]=='A'){a[++t]=(ans+g)%d;for(int i=t;i;i--){if(max_num[i]<a[t])max_num[i]=a[t];elsebreak;}}else{ans=max_num[t-g+1];printf("%d\n",ans);}}return 0; }?
轉載于:https://www.cnblogs.com/qscqesze/p/4349230.html
總結
以上是生活随笔為你收集整理的BZOJ 1012: [JSOI2008]最大数maxnumber 单调队列/线段树/树状数组/乱搞的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 新车一年以后用去电子检吗?
- 下一篇: 【Android】开发优化之——调优工具