【听说是线段树】bzoj1012 [JSOI2008]最大数maxnumber

一眼看题目吓了一跳:这TM不就是单调队列吗,200000又怎样,大不了我二分嘛

系统提示:成功开启 手残模式

开始瞎写:

 1 #include <cstdio>
 2 long long a[200001];
 3 int b[200001];
 4 int m,mod;
 5 int find(int l,int r,long long x)
 6 {
 7     if(l>=r-1)
 8     if(a[r]>=x)
 9         return r;
10     else
11         return l;
12     int mid=(l+r)>>1;
13     if(a[mid]>=x)
14         return find(mid,r,x);
15     else
16         return find(l,mid-1,x);
17 }
18 int _find(int l,int r,long long x)
19 {
20     if(l>=r-1)
21     if(b[l]>=x)
22         return l;
23     else
24         return r;
25     int mid=(l+r)>>1;
26     if(b[mid]>=x)
27         return _find(l,mid,x);
28     else
29         return _find(mid+1,r,x);
30 }
31 int main()
32 {
33     scanf("%d%d",&m,&mod);
34     long long last=0;
35     int n=0,N=0;
36     for(int i=1;i<=m;i++)
37     {
38         char ch=getchar();
39         while(ch!=‘A‘ && ch!=‘Q‘)
40             ch=getchar();
41         long long x;
42         scanf("%lld",&x);
43         if(ch==‘A‘)
44         {
45             n=find(0,n,(x+last)%mod)+1;
46             a[n]=(x+last)%mod;
47             b[n]=++N;
48         }
49         else
50         {
51             if(N==20)
52             {
53                 printf("");
54             }
55             last=(a[_find(1,n,N-x+1)])%mod;
56             printf("%d\n",last);
57         }
58     }
59     return 0;
60 }

卧槽,然后就A了,,,A了,,,

主要思路:

每次二分查找要加入的点的位置和要找的点的位置(利用单调队列位置和权值双重单调)

老板娘毁我人生,居然说这是rmq、线段树、树状数组

时间: 2024-10-19 08:16:33

【听说是线段树】bzoj1012 [JSOI2008]最大数maxnumber的相关文章

单调栈 BZOJ1012 [JSOI2008]最大数maxnumber

1012: [JSOI2008]最大数maxnumber Time Limit: 3 Sec  Memory Limit: 162 MBSubmit: 10440  Solved: 4571[Submit][Status][Discuss] Description 现在请求你维护一个数列,要求提供以下两种操作:1. 查询操作.语法:Q L 功能:查询当前数列中末尾L 个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2. 插入操作.语法:A n 功能:将n加 上t,其中t是最近一

BZOJ1012 JSOI2008 最大数maxnumber 线段树/栈+二分法

题意:给定一个数列,要求维护:1.求倒数L个数中的最大值  2.在数列末尾插入(最近的1询问的答案+x)%D.其中初始序列为空. 法一:因为询问最多200000个,所以直接建一棵大小为M的线段树维护即可 #include <cstdio> #include <cstring> #include <cstdlib> #include <iostream> #include <algorithm> using namespace std; struc

[BZOJ1012][JSOI2008]最大数maxnumber 线段树

没什么好说的--线段树维护区间就行了.第一次居然写错了,真丢人. 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 typedef long long ll; 6 ll inline readll(){ 7 ll Num;char ch; 8 while((ch=getchar())<'0'||ch>'9');Num=ch-'0'; 9

[BZOJ1012] [JSOI2008] 最大数maxnumber (ST表)

Description 现在请求你维护一个数列,要求提供以下两种操作:1. 查询操作.语法:Q L 功能:查询当前数列中末尾L个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2. 插入操作.语法:A n 功能:将n加上t,其中t是最近一次查询操作的答案(如果还未执行过查询操作,则t=0),并将所得结果对一个固定的常数D取模,将所得答案插入到数列的末尾.限制:n是非负整数并且在长整范围内.注意:初始时数列是空的,没有一个数. Input 第一行两个整数,M和D,其中M表示操作的个

bzoj1012 [JSOI2008]最大数maxnumber

这道题有很多的做法 裸的线段树 #include<cstdio> #define lc o*2 #define rc o*2+1 #define mid (l+r)/2 inline int max(int x,int y){ return x>y? x:y; } inline int read(){ char c; while(c=getchar(),c<'0' || c>'9'); int x=c-'0'; while(c=getchar(),c>='0' &

bzoj1012: [JSOI2008]最大数maxnumber [单调队列]

Description 现在请求你维护一个数列,要求提供以下两种操作:1. 查询操作.语法:Q L 功能:查询当前数列中末尾L个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2. 插入操作.语法:A n 功能:将n加上t,其中t是最近一次查询操作的答案(如果还未执行过查询操作,则t=0),并将所得结果对一个固定的常数D取模,将所得答案插入到数列的末尾.限制:n是非负整数并且在长整范围内.注意:初始时数列是空的,没有一个数. Input 第一行两个整数,M和D,其中M表示操作的个

bzoj-1012 1012: [JSOI2008]最大数maxnumber(线段树)

题目链接: 1012: [JSOI2008]最大数maxnumber Time Limit: 3 Sec  Memory Limit: 162 MB Description 现在请求你维护一个数列,要求提供以下两种操作:1. 查询操作.语法:Q L 功能:查询当前数列中末尾L个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2. 插入操作.语法:A n 功能:将n加上t,其中t是最近一次查询操作的答案(如果还未执行过查询操作,则t=0),并将所得结果对一个固定的常数D取模,将所得

BZOJ 1012: [JSOI2008]最大数maxnumber(线段树)

012: [JSOI2008]最大数maxnumber Time Limit: 3 Sec  Memory Limit: 162 MB Description 现在请求你维护一个数列,要求提供以下两种操作:1. 查询操作.语法:Q L 功能:查询当前数列中末尾L个数中的最大的数,并输出这个数的值.限制:L不超过当前数列的长度.2. 插入操作.语法:A n 功能:将n加上t,其中t是最近一次查询操作的答案(如果还未执行过查询操作,则t=0),并将所得结果对一个固定的常数D取模,将所得答案插入到数列

BZOJ 1012: [JSOI2008]最大数maxnumber(线段树)

裸的线段树...因为数组开小了而一直RE..浪费了好多时间.. -------------------------------------------------------------------------- #include<cstdio> #include<algorithm> #include<cstring> #include<cctype> #include<iostream> #define rep(i,n) for(int i=