其他分享
首页 > 其他分享> > 2019.9.4 清点人数

2019.9.4 清点人数

作者:互联网

树状数组水题(逃

题目传送门

 

裸的树状数组 哪个车厢上下人就更新数据 走到哪个车厢就查

上代码

#include<iostream>
#include<cstdio>
#include<cstring>
#define lowbit(x) x&(-x)
#define int long long
using namespace std;
int n,k,m,p;
char ch;
int c[1000050];
void updata(int i,int x)
{
    while(i<=n)
    {
        c[i]+=x;
        i+=lowbit(i);
    }
}
int query(int i)
{
    int res=0;
    while(i>=1)
    {
        res+=c[i];
        i-=lowbit(i);
    }
    return res;
}
signed main()
{
    scanf("%lld%lld",&n,&k);
    for(int i=1;i<=k;i++)
    {
        cin>>ch;
        if(ch=='A')
        {
            scanf("%lld",&m);
            printf("%lld\n",query(m));
        }
        if(ch=='B')
        {
            scanf("%lld%lld",&m,&p);
            updata(m,p);
        }
        if(ch=='C')
        {
            scanf("%lld%lld",&m,&p);
            updata(m,-1*p);
        }
    }
    return 0;
}

 

标签:ch,2019.9,int,updata,scanf,include,清点人数,lld
来源: https://www.cnblogs.com/qxds/p/11460919.html