算法笔记--树状数组

Posted Wisdom+.+

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法笔记--树状数组相关的知识,希望对你有一定的参考价值。

区间和模板:

const int N=1e5+5;
int c[N];
int n;
int lowbit(int x)
{
    return x&(-x);
}
int sum(int x)
{
    int ret=0;
    while(x)
    {
        ret+=c[x];
        x-=lowbit(x);
    }
    return ret;
}
void update(int x,int d)
{
    while(x<=n)
    {
        c[x]+=d;
        x+=lowbit(x);
    }
}

1.单点更新,区间求和

HDU - 1166

技术分享
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mem(a,b) memset(a,b,sizeof(a))

const int N=1e5+5;
int c[N];
int n;
int lowbit(int x)
{
    return x&(-x);
}
int sum(int x)
{
    int ret=0;
    while(x)
    {
        ret+=c[x];
        x-=lowbit(x);
    }
    return ret;
}
void update(int x,int d)
{
    while(x<=n)
    {
        c[x]+=d;
        x+=lowbit(x);
    }
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int T,a,l,r;
    int cnt=0;
    string s;
    cin>>T;
    while(T--)
    {
        cin>>n;
        mem(c,0); 
        for(int i=1;i<=n;i++)cin>>a,update(i,a);
        cout<<"Case "<<++cnt<<":"<<endl;
        while(cin>>s)
        {
            if(s=="End")break;
            if(s=="Query")
            {
                cin>>l>>r;
                cout<<sum(r)-sum(l-1)<<endl;
            }
            else if(s=="Add")
            {
                cin>>l>>r;
                update(l,r);
            }
            else if(s=="Sub")
            {
                cin>>l>>r;
                update(l,-r);
            }
        } 
    }
    return 0;
}
View Code

2.区间更新,单点求值

HDU - 1556

技术分享
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define mem(a,b) memset(a,b,sizeof(a))

const int N=1e5+5;
int c[N];
int n;
int lowbit(int x)
{
    return x&(-x);
}
int sum(int x)
{
    int ret=0;
    while(x)
    {
        ret+=c[x];
        x-=lowbit(x);
    }
    return ret;
}
void update(int x,int d)
{
    while(x<=n)
    {
        c[x]+=d;
        x+=lowbit(x);
    }
}
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    int l,r;
    while(cin>>n)
    {
        mem(c,0);
        for(int i=1;i<=n;i++)
        {
            cin>>l>>r;
            update(l,1);
            update(r+1,-1);
        } 
        for(int i=1;i<=n;i++)
        {
            cout<<sum(i);
            if(i!=n)cout<< ;
            else cout<<endl;
        } 
    }
    return 0;
}
View Code

参考博客:http://blog.csdn.net/yexiaohhjk/article/details/51077545

以上是关于算法笔记--树状数组的主要内容,如果未能解决你的问题,请参考以下文章

学习笔记——二维树状数组

代码与算法集锦-归并排序+树状数组+快排+深度优先搜索+01背包(动态规划)

一天一道算法题——树状数组

树状数组笔记整理

数据结构:树状数组 学习笔记

树状数组求逆序对