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

线段树RMQ

时间:2014-11-19 14:12:36      阅读:131      评论:0      收藏:0      [点我收藏+]

标签:io   os   on   amp   ef   as   c   ui   return   

#include <stdio.h>
#include <string.h>

#define maxn 1000002
#define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1

int T[maxn << 2];

int min(int a, int b) {
        return a < b ? a : b;
}

void pushUp(int rt) {
        T[rt] = min(T[rt<<1], T[rt<<1|1]);
}

void build(int l, int r, int rt) {
        if(l == r) {
                scanf("%d", &T[rt]);
                return;
        }
        int mid = (l + r) >> 1;
        build(lson);
        build(rson);
        pushUp(rt);
}

void update(int pos, int V, int l, int r, int rt) {
        if(l == r) {
                T[rt] = V;
                return;
        }
        int mid = (l + r) >> 1;
        if(pos <= mid) update(pos, V, lson);
        else update(pos, V, rson);
        pushUp(rt);
}

int query(int L, int R, int l, int r, int rt) {
        if(L == l && R == r) return T[rt];
        int mid = (l + r) >> 1;
        if(R <= mid) return query(L, R, lson);
        else if(L > mid) return query(L, R, rson);
        return min(query(L, mid, lson), query(mid + 1, R, rson));
}

int main() {
        int N, i, Q, a, c, b;
        scanf("%d", &N);
        build(1, N, 1);
        scanf("%d", &Q);
        while(Q--) {
                scanf("%d%d%d", &c, &a, &b);
                if(c) update(a, b, 1, N, 1);
                else printf("%d\n", query(a, b, 1, N, 1));
        }
        return 0;
}


线段树RMQ

标签:io   os   on   amp   ef   as   c   ui   return   

原文地址:http://blog.csdn.net/chang_mu/article/details/41280867

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