比赛 |
线段数树状数组 |
评测结果 |
AAAAAAAAAA |
题目名称 |
延绵的山峰 |
最终得分 |
100 |
用户昵称 |
hzoi2017_nzy |
运行时间 |
0.658 s |
代码语言 |
C++ |
内存使用 |
91.84 MiB |
提交时间 |
2018-06-06 19:51:18 |
显示代码纯文本
#include <cstdio>
#include <cmath>
#include <cstring>
#include <algorithm>
using namespace std;
const int maxn=1e6+10;
int st[maxn][24];
int n;
inline int Query(int l,int r){
int k=1;
while((1<<(k))<=(r-l+1))k++;
k--;
return max(st[l][k],st[r-(1<<k)+1][k]);
}
int main(){
freopen("climb.in","r",stdin);
freopen("climb.out","w",stdout);
scanf("%d",&n);
n++;
for(int i=1;i<=n;i++){
scanf("%d",&st[i][0]);
}
for(int j=1;(1<<j)<=n;j++){
for(int i=1;(1<<j)-1+i<=n;i++){
st[i][j]=max(st[i][j-1],st[i+(1<<(j-1))][j-1]);
}
}
int e;
scanf("%d",&e);
for(int i=1;i<=e;i++){
int x,y;
scanf("%d%d",&x,&y);
x++;y++;
printf("%d\n",Query(x,y));
}
fclose(stdin);
fclose(stdout);
return 0;
}