树状数组-BIT 2022-2-20 18:54 | 545 | 算法 | starry | 0 50 字 | 3 分钟 洛谷P3374 //单点修改,区间查询 #include<cstdio> #include<vector> #define lowbit(x) (x&(-x)) using namespace std; int main(){ int n,m; scanf("%d%d",&n,&m); vector<lon… 树状数组