Loj 6277. 数列分块入门 1
题目描述
给出一个长为 nnn 的数列,以及 nnn 个操作,操作涉及区间加法,单点查值。
输入格式
第一行输入一个数字 nnn。
第二行输入 nnn 个数字,第 iii 个数字为 aia_iai,以空格隔开。
接下来输入 nnn 行询问,每行输入四个数字 opt\mathrm{opt}opt、lll、rrr、ccc,以空格隔开。
若 opt=0\mathrm{opt} = 0opt=0,表示将位于 [l,r][l, r][l,r] 的之间的数字都加 ccc。
若 opt=1\mathrm{opt} = 1opt=1,表示询问 ara_rar 的值(lll 和 ccc 忽略)。
输出格式
对于每次询问,输出一行一个数字表示答案。
样例
样例输入
4
1 2 2 3
0 1 3 1
1 0 1 0
0 1 2 2
1 0 2 0
样例输出
2
5
数据范围与提示
对于 100% 100\%100% 的数据,1≤n≤50000,−231≤others 1 \leq n \leq 50000, -2^{31} \leq \mathrm{others}1≤n≤50000,−231≤others、ans≤231−1 \mathrm{ans} \leq 2^{31}-1ans≤231−1。
思路: 简单分块,维护每个块加的权值。
1 #include<bits/stdc++.h> 2 using namespace std; 3 #define F(i,a,b) for(int i=a;i<=b;i++) 4 #define D(i,a,b) for(int i=a;i>=b;i--) 5 #define ms(i,a) memset(a,i,sizeof(a)) 6 #define st(x) ((x-1)*B+1) 7 #define ed(x) min(n,x*B) 8 #define bl(x) ((x-1)/B+1) 9 10 int inline read(){ 11 int x=0,w=0; char c=getchar(); 12 while (c<'0' || c>'9') w+=c=='-',c=getchar(); 13 while (c>='0' && c<='9') x=(x<<3)+(x<<1)+(c^48),c=getchar(); 14 return w? -x: x; 15 } 16 17 int const maxn=50003; 18 19 int n,add[250],a[maxn],B; 20 21 void update(int l,int r,int z){ 22 int x=bl(l); 23 int y=bl(r); 24 if(x==y){ 25 F(i,l,r) a[i]+=z; 26 }else{ 27 F(i,l,ed(x)) a[i]+=z; 28 F(i,st(y),r) a[i]+=z; 29 F(i,x+1,y-1) add[i]+=z; 30 } 31 } 32 33 int query(int k){ 34 int x=bl(k); 35 return a[k]+add[x]; 36 } 37 38 int main(){ 39 n=read(); 40 F(i,1,n) a[i]=read(); 41 B=(int)sqrt(n); 42 F(i,1,n){ 43 int x=read(); 44 int l=read(); 45 int r=read(); 46 int c=read(); 47 if(x==0) update(l,r,c); 48 else printf("%d\n",query(r)); 49 } 50 return 0; 51 }