2016年5月8日

STL做法 平衡树

摘要: #include<cstdio> #include<cstring> #include<iostream> using namespace std; #define M (250000) #define maxn (1000000+5) int N,n,m; int st[4*maxn]; void 阅读全文

posted @ 2016-05-08 09:44 暗夜残星 阅读(399) 评论(0) 推荐(0) 编辑

STL做法 平衡树

摘要: #include #include #include using namespace std; #define M (250000) #define maxn (1000000+5) int N,n,m; int st[4*maxn]; void change(int x,int v){ x+=M; for(st[x]+=v;x>1;x>>=1){ st[x>>1]=st[x]+st[... 阅读全文

posted @ 2016-05-08 09:43 暗夜残星 阅读(92) 评论(0) 推荐(0) 编辑

导航