Pentium.Labs

System全家桶:https://zhuanlan.zhihu.com/c_1238468913098731520

导航

2014年12月20日 #

hdu 5147 树状数组

摘要: 题意:求满足a 2 #include 3 #include 4 using namespace std; 5 int c[50010],f[50010],a[50010],g[50010]; 6 int n,T; 7 8 int lowbit(int x) 9 {10 return x... 阅读全文

posted @ 2014-12-20 23:48 Pentium.Labs 阅读(560) 评论(0) 推荐(0) 编辑

树状数组模板

摘要: 1 /* 2 树状数组基本模板 3 2014.4.20 4 5 初始:设a[i]为要读入的数组,共n个元素,则 6 for i:=1 to n do add(i,a[i]); 7 8 add(x,d):在x的位置加上d 9 sum(x):求a[1]~a[x]的和 10 */... 阅读全文

posted @ 2014-12-20 22:27 Pentium.Labs 阅读(166) 评论(0) 推荐(0) 编辑



Pentium.Lab Since 1998