結果

問題 No.230 Splarraay スプラレェーイ
ユーザー ttkkggwwttkkggww
提出日時 2024-06-12 20:14:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 1,278 bytes
コンパイル時間 4,895 ms
コンパイル使用メモリ 269,836 KB
実行使用メモリ 12,444 KB
最終ジャッジ日時 2024-06-12 20:14:38
合計ジャッジ時間 6,163 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 6 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 38 ms
7,940 KB
testcase_10 AC 37 ms
6,940 KB
testcase_11 AC 23 ms
6,944 KB
testcase_12 AC 39 ms
7,812 KB
testcase_13 AC 8 ms
6,944 KB
testcase_14 AC 41 ms
12,216 KB
testcase_15 AC 60 ms
12,444 KB
testcase_16 AC 74 ms
12,220 KB
testcase_17 AC 77 ms
12,360 KB
testcase_18 AC 62 ms
12,308 KB
testcase_19 AC 52 ms
11,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;


const ll ID = 1e18;
struct S{
	ll value,size;
};

S op(S a, S b){
	return S{a.value+b.value, a.size+b.size};
}

S e(){
	return S{0,0};
}

S mapping(ll f, S x){
	if(f!=ID) x.value = f*x.size;
	return x;
}

ll composition(ll f, ll g){
	if(f==ID) return g;
	return f;
}

ll id(){
	return ID;
}
int N;
int Q;
vector<ll> x,l,r;

void solve(){
	vector<S> v;
	for(int i = 0;i<N;i++){
		v.push_back(S{0,1});
	}
	lazy_segtree<S, op, e,ll,mapping, composition, id> seg(v);
	ll lans=0,rans=0;
	ll addr = 1e9;
	for(int i = 0;i<Q;i++){
		if(x[i]==1){
			seg.apply(l[i],r[i],1);
		}else if(x[i]==2){
			seg.apply(l[i],r[i],addr);
		}else{
			ll tmp = seg.prod(l[i],r[i]).value;
			ll lcnt = tmp%addr;
			ll rcnt = tmp/addr;
			if(rcnt>lcnt){
				rans+= rcnt;
			}
			else if(rcnt<lcnt){
				lans+= lcnt;
			}
		}
	}
	for(int i = 0;i<N;i++){
		if(seg.get(i).value==1){
			lans++;
		}else if(seg.get(i).value==addr){
			rans++;
		}
	}
	cout<<lans<<" "<<rans<<endl;
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> N;
	cin >> Q;
	x.resize(Q);
	l.resize(Q);
	r.resize(Q);
	for(int i = 0;i<Q;i++){
		cin >> x[i] >> l[i] >> r[i];
		r[i]++;
	}
	solve();
}

0