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

树状数组改点求段

时间:2014-07-21 23:30:00      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   io   for   re   

#include<stdio.h>
int a[20],n;
int lowbit(int x)
{
    return x&(-x);
}

void add(int x,int c)
{
    int i;
    for(i=x; i<=n; i+=lowbit(i))a[i]+=c;
}
int sum(int x)
{
    int s=0,i;
    for(i=x; i; i-=lowbit(i))s+=a[i];
    return s;
}
int main()
{
    scanf("%d",&n);
    add(10,2);//把a[10]加2
printf("%d",sum(n));//输入10则a[1]到a[10]的和为2(a初始全为0)

    return 0;
}

树状数组改点求段,布布扣,bubuko.com

树状数组改点求段

标签:style   blog   color   io   for   re   

原文地址:http://www.cnblogs.com/ganhang-acm/p/3859310.html

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