0分求调!!!
查看原帖
0分求调!!!
963978
XIE_HAO楼主2024/11/21 22:18
#include<bits/stdc++.h>
using namespace std;

int n,m;
int a[500001],tree[500001];

int lowbit(int x){
	return x&(-x);
}

void add(int x,int k){
	while(x<=n){
		tree[x]+=k;
		x+=lowbit(x);
	}
}

void cooooout(int x,int y){
	int ans=0;
	while(y>x){
		ans+=tree[x];
		y-=lowbit(y);
	}
	printf("%d\n",ans);
}

int main(){
	scanf("%d%d",&n,&m);
	for(int i=1;i<=n;i++)
		scanf("%d",&tree[i]);
	for(int i=1;i<=m;i++){
		int x,y,z;
		scanf("%d",&x);
		if(x==1){
			scanf("%d%d",&y,&z);
			add(y,z);
		}else{
			scanf("%d%d",&y,&z);
			cooooout(y,z);
		}
	}
}
2024/11/21 22:18
加载中...