比赛 |
区间问题练习 |
评测结果 |
AAAAAAAAEE |
题目名称 |
延绵的山峰 |
最终得分 |
80 |
用户昵称 |
liuyu |
运行时间 |
0.402 s |
代码语言 |
C++ |
内存使用 |
7.94 MiB |
提交时间 |
2017-04-21 20:09:43 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<cstring>
#include<cmath>
using namespace std;
const int MAXN=1000000+10;
int n,q,maxn[MAXN],a[MAXN],Max,lo,ro;
void init()
{
cin>>n;
for(int i=1;i<=n+1;i++)
scanf("%d",&a[i]);
}
void build(int o,int l,int r){
if(l==r)maxn[o]=a[l];
else {
int lc=o*2,rc=o*2+1;
build(lc,l,l+(r-l)/2);
build(rc,l+(r-l)/2+1,r);
maxn[o]=max(maxn[lc],maxn[rc]);
// cout<<maxn[o]<<"A";
}
// cout<<"A";
}
void man(int o,int l,int r){
if(r < lo || l > ro)Max=0;;
if(l>=lo&&r<=ro)Max=max(maxn[o],Max);
else{
int m=l+(r-l)/2;
int lc=o*2,rc=o*2+1;
if(m>=lo)man(lc,l,m);
if(m<ro)man(rc,m+1,r);
}
}
int main()
{
freopen("climb.in","r",stdin);freopen("climb.out","w",stdout);
init();
build(1,1,n+1);
scanf("%d",&q);
for(int i=1;i<=q;i++)
{
scanf("%d%d",&lo,&ro);
Max=0;
lo++;ro++;
man(1,1,n+1);
printf("%d\n",Max);
}
return 0;
}