比赛 线段数树状数组 评测结果 AAAAAAAAAA
题目名称 求和问题 最终得分 100
用户昵称 hzoi2017_nzy 运行时间 0.698 s
代码语言 C++ 内存使用 0.36 MiB
提交时间 2018-06-06 19:37:17
显示代码纯文本
#include <cstdio>
#include <cctype>
#include <algorithm>
#include <cstring>

#define Lowbit(x) (x&(-x))

typedef long long LL;
using namespace std;
const int maxn=10010;

LL c[maxn];
int n;

inline void Add(int x,LL k){
	while(x<=n){
		c[x]+=k;
		x+=Lowbit(x);
	}
}

inline LL Query(int x){
	LL ans=0;
	while(x!=0){
		ans+=c[x];
		x-=Lowbit(x);
	}
	return ans;
}

int main(){
	freopen("sum.in","r",stdin);
	freopen("sum.out","w",stdout);
	scanf("%d",&n);
	for(int i=1;i<=n;i++){
		LL x;
		scanf("%lld",&x);
		Add(i,x);
	}
	int e;
	scanf("%d",&e);
	for(int i=1;i<=e;i++){
		int x,y;
		scanf("%d%d",&x,&y);
		printf("%lld\n",Query(y)-Query(x-1));
	}
	return 0;
}