记录编号 |
443529 |
评测结果 |
AAAAAAAAAA |
题目名称 |
延绵的山峰 |
最终得分 |
100 |
用户昵称 |
REALIZE_BEYOND |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
1.511 s |
提交时间 |
2017-08-31 10:22:21 |
内存使用 |
80.42 MiB |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
int h[1000005],f[1000005][20];
int n,q;
int main(){
freopen("climb.in","r",stdin);
freopen("climb.out","w",stdout);
cin>>n;
for(int i=0;i<=n;i++){
cin>>h[i];
f[i][0]=h[i];
}
for(int j=1;j<=20;j++)
for(int i=0;i<=n;i++)
if(i+(1<<j)-1<=n)
f[i][j]=max(f[i][j-1],f[i+(1<<(j-1))][j-1]);
cin>>q;
int l,r,temp;
for(int i=1;i<=q;i++){
cin>>l>>r;
temp=log(r-l+1)/log(2);
cout<<max(f[l][temp],f[r-(1<<temp)+1][temp])<<"\n";
}
return 0;
}
/*
10
0
1
2
3
2
3
4
3
2
1
0
5
0 10
2 4
3 7
7 9
8 8
*/