hdu 1166 敌兵布阵 区间和

Problem:
给n个节点,有很多命令,两种命令,一种是更新节点的值,一种是区间求和:
Solution:
利用线段树堆区间求和
note:
要关闭cin的同步,不然会超时。

#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 50000

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

node Tree[maxn*4];
int value[maxn+10];
int flag;

//初始化树,根节点是1
void init_tree(int root, int l, int r){
    Tree[root].l = l;
    Tree[root].r = r;
    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;
    }
}

//查找和
int 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;
    else{
        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 idx, int v){
    if(Tree[root].l == Tree[root].r)
        Tree[root].sum += flag*v;
    else{
        Tree[root].sum += flag*v;

        if(idx <= Tree[root].mid())
            update_tree(2*root, idx, v);
        else
            update_tree(2*root+1, idx, v);
    }
}

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

    int t, n;
    int a, b;
    string s;
    int res;
    cin >> t;
    for(int k = 1; k <= t; ++k){
        cout << "Case " << k << ":"<<endl;
        cin >> n;
        for(int i = 1; i <= n; ++i)
            cin >> value[i];
        init_tree(1, 1, n);
        while(cin >> s){
            if(s == "Add"){
                cin >> a >> b;
                flag = 1;
                update_tree(1, a, b);
            }
            else if(s == "Sub"){
                cin >> a >> b;
                flag = -1;
                update_tree(1, a, b);
            }
            else if(s == "Query"){
                cin >> a >> b;
                res = query_tree(1, a, b);
                cout << res << endl;
            }
            else
                break;
        }
    }

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值