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

HDU1166 线段树——单点更新

时间:2014-11-20 23:11:15      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   ar   color   sp   for   on   

题目:http://acm.hdu.edu.cn/showproblem.php?pid=1166

 

根据网上大神的简短代码模板自己重新打了一遍,也加深理解

#include<cstdio>
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
const int maxn = 55555;
int sum[maxn << 2];
void pushup(int rt)
{
    sum[rt] = sum[rt << 1] + sum[rt << 1 | 1];
}
void build(int l, int r, int rt)
{
    if (l == r){
        scanf("%d", &sum[rt]);
        return;
    }
    int m = (l + r) >> 1;
    build(lson);
    build(rson);
    pushup(rt);
}
void update(int p, int add, int l, int r, int rt)
{
    if (l == r){
        sum[rt] += add;
        return;
    }
    int m = (l + r) >> 1;
    if (p <= m)update(p,add,lson);
    else update(p,add,rson);
    pushup(rt);
}
int query(int L, int R, int l, int r, int rt)
{
    if (L <= l&&r <= R)
    {
        return sum[rt];
    }
    int m = (l + r) >> 1;
    int ret = 0;
    if (L <= m) ret += query(L, R, lson);
    if (R > m) ret += query(L, R, rson);
    return ret;
}
int main()
{
    int T, n;
    scanf("%d", &T);
    for (int i = 1; i <= T; i++){
        printf("Case %d:\n", i);
        scanf("%d", &n);
        build(1, n, 1);
        char op[10];
        while (scanf("%s", op)){
            if (op[0] == E) break;
            int a, b;
            scanf("%d%d", &a, &b);
            if (op[0] == Q) printf("%d\n",query(a, b, 1, n, 1));
            else if (op[0] == A) update(a, b, 1, n, 1);
            else update(a, -b, 1, n, 1);
        }
    }
    return 0;
}

 

HDU1166 线段树——单点更新

标签:style   blog   http   io   ar   color   sp   for   on   

原文地址:http://www.cnblogs.com/-Unc/p/4111561.html

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