摘要: #include<bits/stdc++.h> using namespace std; #define lson l,m,rt<<1 #define rson m+1,r,rt<<1|1 #define rush! ios::sync_with_stdio(false);cin.tie(0); # 阅读全文
posted @ 2020-02-26 18:00 _LH2000 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 区间修改 单点查询 int n,m; int a[50005] = {0},c[50005]; //对应原数组和树状数组 int lowbit(int x){ return x&(-x); } void updata(int i,int k){ //在i位置加上k while(i <= n){ c[ 阅读全文
posted @ 2020-02-26 15:34 _LH2000 阅读(113) 评论(0) 推荐(0) 编辑