码迷,mamicode.com
首页 > 其他好文 > 详细

区间最值

时间:2019-11-28 21:19:32      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:http   else   for   using   tree   fine   scan   https   efi   

https://www.luogu.com.cn/problem/P3865

#include <iostream>
#include <cstdio>
#include <algorithm>
using namespace std;
#define lson l,m,st<<1
#define rson m+1,r,st<<1|1
typedef long long ll;
const int maxn = 1e5 + 5;

int a[maxn];
int tree[maxn<<2];

void build(int l,int r,int st)
{
    if(l==r) 
    tree[st]=a[l];
    else
    {
        int m=(l+r)>>1;
        build(lson);
        build(rson);
        tree[st]=max(tree[lson],tree[rson]);
    }
}

int query(int L,int R,int l,int r,int st)
{
    if(L<=l&&r<=R)
    return tree[st];
    int m=(l+r)>>1;
    int ans=0;
    if(L<=m)  ans= max(query(L,R,lson),ans);
    if(m<R)   ans= max(query(L,R,rson),ans);
    return ans;
}


int main() {
    int n,m;
    scanf("%d%d",&n,&m);
    for(int i=1;i<=n;i++)
    scanf("%d",&a[i]);
    build(1,n,1);
    int l,r;
    while(m--)
    {
        scanf("%d%d",&l,&r);
        printf("%d\n",query(l,r,1,n,1));
    }
    return 0;
}

区间最值

标签:http   else   for   using   tree   fine   scan   https   efi   

原文地址:https://www.cnblogs.com/chilkings/p/11953592.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!