poj 3468 区间更新or求和

Problem:
给一个数组,多次更新一段区间的值,或者查询一段区间的和。
Solutioin:
利用线段树实现高效的反复查询的工作。

#include<cstdio>
#include<iostream>
#include<sstream>
#include<cstdlib>
#include<cmath>
#include<cctype>
#include<string>
#include<cstring>
#include<algorithm>
#include<stack>
#include<queue>
#include<set>
#include<map>
#include<ctime>
#include<vector>
#include<fstream>
#include<list>
using namespace std;

#define ms(s) memset(s,0,sizeof(s))
typedef unsigned long long ULL;
typedef long long LL;

const double PI = 3.141592653589;
const int INF = 0x3fffffff;

#define maxn 100000

struct node{
    int l, r;
    LL sum, inc;
    int mid(){
        return (l+r)/2;
    }
};

node Tree[maxn*4];
LL value[maxn+10];

//初始化树,根节点是1
void init_tree(int root, int l, int r){
    Tree[root].l = l;
    Tree[root].r = r;
    Tree[root].inc = 0;
    if(l == r){
        Tree[root].sum = value[l];
    }
    else{
        init_tree(2*root, l, (l+r)/2);
        init_tree(2*root+1, (l+r)/2 + 1, r);

        Tree[root].sum = Tree[2*root].sum + Tree[2*root+1].sum;
    }
}

//查找和
LL query_tree(int root, int l, int r){
    int m = Tree[root].mid();
    if(l == Tree[root].l && r == Tree[root].r)
        return Tree[root].sum + Tree[root].inc*(r-l+1);
    else{
        Tree[2*root].inc += Tree[root].inc;
        Tree[2*root+1].inc += Tree[root].inc;
        Tree[root].sum += Tree[root].inc * (Tree[root].r-Tree[root].l+1);
        Tree[root].inc = 0;
        if(l > m){
            return query_tree(2*root+1, l, r);
        }
        else if(r <= m)
            return query_tree(2*root, l, r);
        else
            return query_tree(2*root, l, m) + query_tree(2*root+1, m+1, r);
    }
}

void update_tree(int root, int l, int r, LL v){
    int m = Tree[root].mid();
    if(Tree[root].l == l && Tree[root].r == r)
        Tree[root].inc += v;
    else{
        Tree[root].sum += v*(r-l+1);
        if(l > m){
            update_tree(2*root+1, l, r, v);
        }
        else if(r <= m)
            update_tree(2*root, l, r, v);
        else{
            update_tree(2*root, l, m, v);
            update_tree(2*root+1, m+1, r, v);
        }
    }
}

int main(){
//        freopen("/Users/really/Documents/code/input","r",stdin);
    //    freopen("/Users/really/Documents/code/output","w",stdout);
    ios::sync_with_stdio(false);

    ms(Tree);

    int n, q;
    int a, b, c;
    cin >> n >> q;
    string s;
    for(int i = 1; i <= n; ++i)
        cin >> value[i];
    init_tree(1, 1, n);
    for(int i = 1; i <= q; ++i){
        cin >> s;
        if(s == "Q"){
            cin >> a >> b;
            cout << query_tree(1, a, b) << endl;
        }
        else{
            cin >> a >> b >> c;
            update_tree(1, a, b, c);
        }
    }

    return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值