結果

問題 No.876 Range Compress Query
ユーザー chocoruskchocorusk
提出日時 2019-09-06 21:58:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 372 ms / 2,000 ms
コード長 2,925 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 122,124 KB
実行使用メモリ 15,736 KB
最終ジャッジ日時 2023-09-06 23:50:13
合計ジャッジ時間 5,060 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 3 ms
4,384 KB
testcase_02 AC 2 ms
4,376 KB
testcase_03 AC 3 ms
4,380 KB
testcase_04 AC 2 ms
4,376 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 3 ms
4,376 KB
testcase_07 AC 3 ms
4,376 KB
testcase_08 AC 3 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 362 ms
14,860 KB
testcase_12 AC 297 ms
14,216 KB
testcase_13 AC 304 ms
14,804 KB
testcase_14 AC 357 ms
14,744 KB
testcase_15 AC 249 ms
15,004 KB
testcase_16 AC 350 ms
15,728 KB
testcase_17 AC 345 ms
15,736 KB
testcase_18 AC 372 ms
15,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
typedef pair<P, int> Pi;
template<typename Monoid, typename OperatorMonoid=Monoid>
struct LazySegmentTree{
	using F=function<Monoid(Monoid, Monoid)>;
	using G=function<Monoid(Monoid, OperatorMonoid, int)>;
	using H=function<OperatorMonoid(OperatorMonoid, OperatorMonoid)>;
	int sz;
	vector<Monoid> data;
	vector<OperatorMonoid> lazy;
	const F f;
	const G g;
	const H h;
	const Monoid e1;
	const OperatorMonoid e0;

	LazySegmentTree(int n, const F f, const G g, const H h, const Monoid &e1, const OperatorMonoid &e0): f(f), g(g), h(h), e1(e1), e0(e0){
		sz=1;
		while(sz<n) sz<<=1;
		data.resize(2*sz-1, e1);
		lazy.resize(2*sz-1, e0);
	}

	void build(vector<Monoid> v){
		for(int i=0; i<v.size(); i++) data[i+sz-1]=v[i];
		for(int i=sz-2; i>=0; i--) data[i]=f(data[2*i+1], data[2*i+2]);
	}

	void eval(int k, int l, int r){
		if(lazy[k]!=e0){
			data[k]=g(data[k], lazy[k], r-l);
			if(k<sz-1){
				lazy[2*k+1]=h(lazy[2*k+1], lazy[k]);
				lazy[2*k+2]=h(lazy[2*k+2], lazy[k]);
			}
		}
		lazy[k]=e0;
	}

	void update(int a, int b, const OperatorMonoid &x, int k, int l, int r){
		eval(k, l, r);
		if(r<=a || b<=l) return;
		if(a<=l && r<=b){
			lazy[k]=h(lazy[k], x);
			eval(k, l, r);
		}else{
			update(a, b, x, 2*k+1, l, (l+r)/2);
			update(a, b, x, 2*k+2, (l+r)/2, r);
			data[k]=f(data[2*k+1], data[2*k+2]);
		}
	}
	void update(int a, int b, const OperatorMonoid &x){
		return update(a, b, x, 0, 0, sz);
	}

	Monoid find(int a, int b, int k, int l, int r){
		eval(k, l, r);
		if(b<=l || r<=a) return e1;
		if(a<=l && r<=b) return data[k];
		else return f(find(a, b, 2*k+1, l, (l+r)/2), find(a, b, 2*k+2, (l+r)/2, r));
	}
	Monoid find(int a, int b){
		return find(a, b, 0, 0, sz);
	}
	Monoid operator[](const int &k){
		return find(k, k+1);
	}
};
int main()
{
	int n, q; cin>>n>>q;
	auto f=[](Pi p, Pi q){
		int c=p.second+q.second;
		if(p.first.second!=q.first.first) c++;
		return Pi(P(p.first.first, q.first.second), c);
	};
	auto g=[](Pi p, ll x, int len){ return Pi(P(p.first.first+x, p.first.second+x), p.second);};
	auto h=[](ll x, ll y){ return x+y;};
	LazySegmentTree<Pi, ll> seg(n+2, f, g, h, Pi(P(0, 0), 0), 0);
	vector<Pi> a(n+2);
	for(int i=0; i<n; i++){
		ll ai; cin>>ai;
		a[i+1]=Pi(P(ai, ai), 0);
	}
	seg.build(a);
	for(int i=0; i<q; i++){
		int t; cin>>t;
		if(t==1){
			int l, r, x; cin>>l>>r>>x;
			seg.update(l, r+1, x);
		}else{
			int l, r; cin>>l>>r;
			cout<<seg.find(l, r+1).second-1<<endl;
		}
	}
	return 0;
}
0