結果

問題 No.876 Range Compress Query
ユーザー 沙耶花沙耶花
提出日時 2019-09-06 21:45:53
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,946 bytes
コンパイル時間 1,824 ms
コンパイル使用メモリ 170,128 KB
実行使用メモリ 6,088 KB
最終ジャッジ日時 2023-09-06 23:25:36
合計ジャッジ時間 4,643 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 WA -
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,376 KB
testcase_09 AC 3 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 206 ms
5,772 KB
testcase_12 AC 171 ms
5,436 KB
testcase_13 AC 172 ms
5,544 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 196 ms
6,088 KB
testcase_17 AC 198 ms
5,964 KB
testcase_18 AC 209 ms
5,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 1000000000000000

template <typename T>
struct segtree{
	//元データx[i]はv[n+i]
	//v[i]の親はv[i/2],子はv[i*2]とv[i*2+1]
	vector<T> v;
	int n;
	
	const T init_value = 0;
	
	segtree(vector<T> &x){
		n=1;
		while(true){
			if(n>=x.size())break;
			n*=2;
		}
		v.resize(2*n,init_value);
		
		for(int i=0;i<x.size();i++){
			v[n+i]=x[i];
		}
		for(int i=n-1;i>=0;i--){
			v[i]=func(v[i*2],v[i*2+1]);
		}
	}

	void update(int x,T val){
		x+=n;
		v[x]=val;
		while(true){
			x=(x)/2;
			v[x]=func(v[x*2],v[x*2+1]);
			if(x<=0)break;
		}
	}
	
	//区間[l,r)におけるクエリ処理
	T query(int l,int r){
		T res = init_value;
		l+=n;r+=n;
		while(true){
			if(l%2==1){
				res=func(v[l],res);
				l++;
			}
			if(r%2==1){
				res=func(v[r-1],res);
				r--;
			}
			if(l>=r)break;
			l/=2;r/=2;
		}
		return res;
	}
	T func(T a,T b){
		return a+b;
	}
	
	void show(){
		int n = 1;
		for(int i=1;i<v.size();i++){
			for(int j=0;j<n;j++){
				if(j!=0)cout<<' ';
				cout<<v[i+j];
			}
			cout<<endl;
			i+=n-1;
			n*=2;
		}
	}
	
};

int main(){
	
	int N,Q;
	cin>>N>>Q;
	
	vector<long long> A(N);
	for(int i=0;i<N;i++){
		cin>>A[i];
	}
	
	vector<long long> dif(N);
	vector<int> B(N,1);
	for(int i=0;i<N-1;i++){
		dif[i] = A[i+1] - A[i];
		
		if(dif[i]==0)B[i]=0;
		
	}
	dif[N-1] = Inf;
	
	segtree<int> seg(B);
	
	for(int i=0;i<Q;i++){
		int n;
		cin>>n;
		
		if(n==1){
			int l,r;
			cin>>l>>r;
			l--,r--;
			long long x;
			cin>>x;
			l--;
			if(l>=0){
				dif[l]+=x;
				if(dif[l]==0)seg.update(l,0);
				else seg.update(l,1);
			}
			
			dif[r]-=x;
			if(dif[r]==0)seg.update(r,0);
			else seg.update(r,1);
		}
		else{
			int l,r;
			cin>>l>>r;
			l--,r--;
			
			int ans = seg.query(l,r);
			cout<<ans+1<<endl;
			
		}
	}
	//for(int i=0;i<N;i++)cout<<dif[i]<<endl;
	//seg.show();
	
	
	
	return 0;
}
0