結果

問題 No.876 Range Compress Query
ユーザー kotatsugamekotatsugame
提出日時 2019-09-08 12:45:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 217 ms / 2,000 ms
コード長 1,529 bytes
コンパイル時間 657 ms
コンパイル使用メモリ 76,984 KB
実行使用メモリ 5,600 KB
最終ジャッジ日時 2023-09-09 22:24:08
合計ジャッジ時間 3,535 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 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,376 KB
testcase_06 AC 3 ms
4,384 KB
testcase_07 AC 3 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 3 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 209 ms
5,112 KB
testcase_12 AC 176 ms
5,128 KB
testcase_13 AC 176 ms
5,164 KB
testcase_14 AC 207 ms
5,208 KB
testcase_15 AC 149 ms
5,384 KB
testcase_16 AC 204 ms
5,376 KB
testcase_17 AC 203 ms
5,600 KB
testcase_18 AC 217 ms
5,336 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:57:1: 警告: ISO C++ では型の無い ‘main’ の宣言を禁止しています [-Wreturn-type]
   57 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
#include<vector>
#include<functional>
#include<limits>
template<typename T>
struct segtree{
	function<T(T,T)>calcfn,updatefn;
	int n;
	T defvalue;
	vector<T>dat;
	segtree(int n_=0,T defvalue_=numeric_limits<T>::max(),
		function<T(T,T)>calcfn_=[](T a,T b){return a<b?a:b;},
		function<T(T,T)>updatefn_=[](T a,T b){return b;}
	):defvalue(defvalue_),calcfn(calcfn_),updatefn(updatefn_)
	{
		n=1;
		while(n<n_)n<<=1;
		dat.assign(2*n-1,defvalue);
	}
	void copy(const vector<T>&v)
	{
		for(int i=0;i<v.size();i++)dat[i+n-1]=v[i];
		for(int i=n-2;i>=0;i--)dat[i]=calcfn(dat[i*2+1],dat[i*2+2]);
	}
	void update(int i,T a)
	{
		i+=n-1;
		dat[i]=updatefn(dat[i],a);
		while(i>0)
		{
			i=(i-1)/2;
			dat[i]=calcfn(dat[2*i+1],dat[2*i+2]);
		}
	}
	T query(int a,int b)//[a,b)
	{
		int L=min(max(a,0),n)+n-1;
		int R=min(max(b,0),n)+n-1;
		T ret=defvalue;
		for(;L<R;L>>=1,R>>=1)
		{
			if(!(L&1))
			{
				ret=calcfn(ret,dat[L]);
			}
			if(!(R&1))
			{
				ret=calcfn(ret,dat[--R]);
			}
		}
		return ret;
	}
};
int N,Q;
long A[1<<17],B[1<<17];
main()
{
	cin>>N>>Q;
	segtree<int>P(N,0,[](int a,int b){return a+b;});
	for(int i=0;i<N;i++)
	{
		cin>>A[i];
		if(i)
		{
			B[i-1]=A[i]-A[i-1];
			if(B[i-1])P.update(i-1,1);
		}
	}
	for(int i=0;i<Q;i++)
	{
		int c,l,r;cin>>c>>l>>r;
		l--,r--;
		if(c==1)
		{
			int x;cin>>x;
			if(l)
			{
				B[l-1]+=x;
				P.update(l-1,!!B[l-1]);
			}
			if(r<N-1)
			{
				B[r]-=x;
				P.update(r,!!B[r]);
			}
		}
		else
		{
			cout<<P.query(l,r)+1<<endl;
		}
	}
}

0