比赛 |
线段数树状数组 |
评测结果 |
AAAAAAAWWW |
题目名称 |
求和问题 |
最终得分 |
70 |
用户昵称 |
李宴彬 |
运行时间 |
4.324 s |
代码语言 |
C++ |
内存使用 |
0.35 MiB |
提交时间 |
2018-06-08 09:59:14 |
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
int c[10010];
int n;
int lowb(int x)
{
return x & -x;
}
long long getsum(int x)
{
long long sum=0;
while(x>0)
{
sum+=c[x];
x-=lowb(x);
}
return sum;
}
void chang(int x,int value)
{
while(x<=n)
{
c[x]+=value;
x+=lowb(x);
}
}
int main()
{
int a[10010];
int m;
int x,y;
freopen("sum.in","r",stdin) ;
freopen("sum.out","w",stdout);
cin>>n;
for(int i=1;i<=n;i++)
{
cin>>a[i];
chang(i,a[i]);
}
cin>>m;
for(int i=1;i<=m;i++)
{
cin>>x>>y;
cout<<getsum(y)-getsum(x-1)<<endl;
}
return 0;
}