Bryce1010模板

1、一维树状数组

https://vjudge.net/contest/239647#problem/A【HDU1556】

#include<bits/stdc++.h>
using namespace std;
#define ll long long
const int MAXN=1e5+10;
int n,c[MAXN<<1]; //表示二进制x的最末尾的一个1
int lowbit(int x)
{
return x&(-x);
} //区间求和
int getSum(int x)
{
int ans=0;
while(x<=n)
{
ans+=c[x];
x+=lowbit(x);
}
return ans;
} //更新节点
void update(int pos,int val)
{
while(pos>0)
{
c[pos]+=val;
pos-=lowbit(pos);
}
} int main()
{
int a,b;
while(cin>>n)
{
memset(c,0,sizeof(c));
for(int i=0;i<n;i++)
{
cin>>a>>b;
update(b,1);
update(a-1,-1);
}
for(int i=1;i<n;i++)
cout<<getSum(i)<<" ";
cout<<getSum(n)<<endl;
}
}

2、二维树状数组

https://vjudge.net/contest/239647#problem/B【POJ 2155】

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<math.h>
using namespace std;
#define ll long long const int MAXN=1e3+123;
int c[MAXN][MAXN];
int n,q;
int lowbit(int x)
{
return x&(-x);
} void update(int posi,int posj,int val)
{
int tmpj;
while(posi<=n)
{
tmpj=posj;
while(tmpj<=n)
{
c[posi][tmpj]+=val;
tmpj+=lowbit(tmpj);
}
posi+=lowbit(posi);
}
} int getSum(int posi,int posj)
{
int ans=0;
int tmpj=posj;
while(posi>0)
{
tmpj=posj;
while(tmpj>0)
{
ans+=c[posi][tmpj];
tmpj-=lowbit(tmpj);
}
posi-=lowbit(posi);
}
return ans;
} int main()
{
int t;
scanf("%d",&t);
while(t--)
{ char ch;
int x1,y1,x2,y2;
int x,y;
scanf("%d%d",&n,&q);
memset(c,0,sizeof(c));
while(q--)
{
getchar();
scanf("%c",&ch);
if(ch=='C')
{
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
update(x1,y1,1);
update(x2+1,y1,1);
update(x1,y2+1,1);
update(x2+1,y2+1,1);
}
else
{
scanf("%d%d",&x,&y);
//查询前k的和对2取模即可
printf("%d\n",getSum(x,y)%2);
} }
if(t)printf("\n");
} return 0;
}

3、树状数组求逆序数

https://blog.csdn.net/Fire_to_cheat_/article/details/81129609

#include<bits/stdc++.h>
using namespace std;
#define ll long long const int MAXN=5e5+10; ll sum[MAXN],n;
struct Node
{
int id,digit;
Node(){}
Node(int i,int d):id(i),digit(d){}
}node[MAXN]; bool cmp(Node a,Node b)
{
return a.digit<b.digit;
} ll lowbit(ll x)
{
return x&(-x);
} void update(ll pos,ll val)
{
while(pos<=n)
{
sum[pos]+=val;
pos+=lowbit(pos);
}
} ll getSum(ll x)
{
ll ans=0;
while(x>0)
{
ans+=sum[x];
x-=lowbit(x);
}
return ans;
} int main()
{
while(~scanf("%d",&n))
{
if(n==0)break;
int x;
for(int i=1;i<=n;i++)
{
cin>>x;
node[i]=Node(i,x);
}
sort(node+1,node+n+1,cmp);
memset(sum,0,sizeof(sum));
ll cnt=0;
for(int i=1;i<=n;i++)
{
update(node[i].id,1);
cnt+=(i-getSum(node[i].id));
}
cout<<cnt<<endl; }
return 0; }

bryce1010专题训练——树状数组的更多相关文章

  1. NOIp 数据结构专题总结 (2):分块、树状数组、线段树

    系列索引: NOIp 数据结构专题总结 (1) NOIp 数据结构专题总结 (2) 分块 阅:<「分块」数列分块入门 1-9 by hzwer> 树状数组 Binary Indexed T ...

  2. 【算法系列学习】线段树vs树状数组 单点修改,区间查询 [kuangbin带你飞]专题七 线段树 A - 敌兵布阵

    https://vjudge.net/contest/66989#problem/A 单点修改,区间查询 方法一:线段树 http://www.cnblogs.com/kuangbin/archive ...

  3. 2018牛客网暑假ACM多校训练赛(第五场)H subseq 树状数组

    原文链接https://www.cnblogs.com/zhouzhendong/p/NowCoder-2018-Summer-Round5-H.html 题目传送门 - https://www.no ...

  4. 2018牛客网暑假ACM多校训练赛(第五场)F take 树状数组,期望

    原文链接https://www.cnblogs.com/zhouzhendong/p/NowCoder-2018-Summer-Round5-F.html 题目传送门 - https://www.no ...

  5. 树状数组训练题2:SuperBrother打鼹鼠(vijos1512)

    先给题目链接:打鼹鼠 这道题怎么写? 很明显是树状数组. 而且,很明显是二维树状数组. 如果你没学过二维的树状数组,那么戳开这里:二维树状数组 看完以后,你就会知道怎么做了. 没有什么好解释的,几乎就 ...

  6. 树状数组训练题1:弱弱的战壕(vijos1066)

    题目链接:弱弱的战壕 这道题似乎是vijos上能找到的最简单的树状数组题了. 原来,我有一个错误的思想,我的设计是维护两个树状数组,一个是横坐标,一个是纵坐标,然后读入每个点的坐标,扔进对应的树状数组 ...

  7. 牛客训练六:海啸(二维树状数组+vector函数的使用)

    题目链接:传送门 思路: 二维树状数组, vector(first,last)函数中assign函数相当于将first中的函数清空,然后将last中的值赋值给first. 参考文章:传送门 #incl ...

  8. CDOJ 838 母仪天下 树状数组 (2014数据结构专题

    母仪天下 Time Limit: 1 Sec  Memory Limit: 162 MB 题目连接 http://acm.uestc.edu.cn/#/problem/show/838 Descrip ...

  9. 牛客网多校训练第一场 J - Different Integers(树状数组 + 问题转换)

    链接: https://www.nowcoder.com/acm/contest/139/J 题意: 给出n个整数的序列a(1≤ai≤n)和q个询问(1≤n,q≤1e5),每个询问包含两个整数L和R( ...

随机推荐

  1. 例子:两个表根据productID合并

  2. diamond简介和使用

    简介 diamond是淘宝内部使用的一个管理持久配置的系统,它的特点是简单.可靠.易用,目前淘宝内部绝大多数系统的配置,由diamond来进行统一管理. diamond为应用系统提供了获取配置的服务, ...

  3. js replace()实现全部替换

    var r= "1\n2\n3\n"; //将字母\n替换成分号 alert(r.replace("\n",";")); 结果:1;2\n3 ...

  4. console调试命令

    一.显示信息的命令 <!DOCTYPE html> <html> <head> <title>常用console命令</title> < ...

  5. java.lang.IllegalStateException: No instances available for localhost

    在SpringCloud的项目中,我们使用了自动配置的OAuth2RestTemplate,RestTemplate,但是在使用这些restTemplate的时候,url必须是服务的名称,如果要调用真 ...

  6. js判断字符串是否包含某个字符串

    String对象的方法 1,indexOf() (推荐) 方法可返回某个指定的字符串值在字符串中首次出现的位置.如果要检索的字符串值没有出现,则该方法返回 -1 var str = "123 ...

  7. MYSQL初级学习笔记三:数据的操作DML!(视频序号:初级_24,25,36)

    知识点五:数据的操作DML(24,25,36) 插入数据: --测试插入记录INSERT CREATE TABLE IF NOT EXISTS user13( id TINYINT UNSIGNED ...

  8. asp+jQuery解决中文乱码

    1. [代码][ASP/Basic]代码 '在客户端使用javascript的escape()方法对数据进行编码,在服务器端使用对等的VbsUnEscape()对数据进行解码,同样在服务器端使用Vbs ...

  9. Linux系统中的运行级别

    什么是运行级呢?简单的说,运行级就是操作系统当前正在运行的功能级别. 它让一些程序在一个级别启动,而另外一个级别的时候不启动. Linux系统的有效登录模式有0~9共十种,不过沿用UNIX系统的至多6 ...

  10. WebSocket使用教程 - 带完整实例--网址:https://my.oschina.net/u/1266171/blog/357488

    什么是WebSocket?看过html5的同学都知道,WebSocket protocol 是HTML5一种新的协议.它是实现了浏览器与服务器全双工通信(full-duplex).HTML5定义了We ...