結果

問題 No.230 Splarraay スプラレェーイ
ユーザー 👑 kmjpkmjp
提出日時 2015-06-20 02:17:06
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 2,087 bytes
コンパイル時間 1,308 ms
コンパイル使用メモリ 159,016 KB
実行使用メモリ 27,776 KB
最終ジャッジ日時 2023-09-21 10:30:43
合計ジャッジ時間 2,942 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
27,480 KB
testcase_01 AC 9 ms
27,632 KB
testcase_02 AC 10 ms
27,652 KB
testcase_03 AC 9 ms
27,776 KB
testcase_04 AC 8 ms
27,480 KB
testcase_05 AC 9 ms
27,652 KB
testcase_06 AC 13 ms
27,724 KB
testcase_07 AC 10 ms
27,592 KB
testcase_08 AC 10 ms
27,480 KB
testcase_09 AC 38 ms
27,652 KB
testcase_10 AC 59 ms
27,656 KB
testcase_11 AC 28 ms
27,716 KB
testcase_12 AC 37 ms
27,652 KB
testcase_13 AC 15 ms
27,656 KB
testcase_14 AC 43 ms
27,604 KB
testcase_15 AC 72 ms
27,480 KB
testcase_16 AC 68 ms
27,496 KB
testcase_17 AC 68 ms
27,536 KB
testcase_18 AC 61 ms
27,480 KB
testcase_19 AC 51 ms
27,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<to;x++)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------

template<int NV> class SegTree_Lazy {
public:
	typedef pair<int,int> V;
	vector<int> val;
	vector<V> to;
	SegTree_Lazy(){val.resize(NV*2); to.resize(NV*2);};
	V comp(V l,V r){ l.first+=r.first, l.second+=r.second; return l;};

	V getval(int x,int y,int l=0,int r=NV,int k=1) {
		if(r<=x || y<=l) return {0,0};
		if(x<=l && r<=y) return to[k];
		x=max(x,l);
		y=min(y,r);
		if(val[k]==0) return {0,0};
		if(val[k]==1) return {y-x,0};
		if(val[k]==2) return {0,y-x};
		
		return comp(getval(x,y,l,(l+r)/2,k*2),getval(x,y,(l+r)/2,r,k*2+1));
	}

	void update(int x,int y, int v,int l=0,int r=NV,int k=1) {
		if(l>=r) return;
		if(x<=l && r<=y) {
			val[k]=v;
			if(v==0) to[k]={0,0};
			if(v==1) to[k]={r-l,0};
			if(v==2) to[k]={0,r-l};
		}
		else if(l < y && x < r) {
			if(val[k]!=-1) {
				val[k*2]=val[k*2+1]=val[k];
				if(val[k]==0) to[k*2]=to[k*2+1]={0,0};
				if(val[k]==1) to[k*2]=to[k*2+1]={(r-l)/2,0};
				if(val[k]==2) to[k*2]=to[k*2+1]={0,(r-l)/2};
				val[k]=-1;
			}
			update(x,y,v,l,(l+r)/2,k*2);
			update(x,y,v,(l+r)/2,r,k*2+1);
			to[k]=comp(to[k*2],to[k*2+1]);
		}
	}
};

int N,Q;
ll AA,BB;
SegTree_Lazy<1<<20> st;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>Q;
	while(Q--) {
		cin>>x>>l>>r;
		
		if(x==0) {
			auto rr=st.getval(l,r+1);
			if(rr.first>rr.second) AA+=rr.first;
			if(rr.first<rr.second) BB+=rr.second;
		}
		else {
			st.update(l,r+1,x);
		}
	}
	auto rr=st.getval(0,N);
	AA+=rr.first;
	BB+=rr.second;
	
	_P("%lld %lld\n",AA,BB);
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false);
	FOR(i,argc-1) s+=argv[i+1],s+='\n';
	FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	solve(); return 0;
}
0