結果

問題 No.2762 Counting and Deleting
ユーザー 沙耶花沙耶花
提出日時 2024-05-17 21:47:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 499 ms / 4,000 ms
コード長 1,424 bytes
コンパイル時間 4,322 ms
コンパイル使用メモリ 271,360 KB
実行使用メモリ 15,708 KB
最終ジャッジ日時 2024-05-17 21:47:57
合計ジャッジ時間 10,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 499 ms
15,616 KB
testcase_08 AC 489 ms
15,708 KB
testcase_09 AC 480 ms
15,620 KB
testcase_10 AC 472 ms
15,600 KB
testcase_11 AC 496 ms
15,668 KB
testcase_12 AC 491 ms
15,584 KB
testcase_13 AC 477 ms
15,636 KB
testcase_14 AC 470 ms
15,708 KB
testcase_15 AC 459 ms
15,664 KB
testcase_16 AC 461 ms
15,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

using A = array<array<mint,4>,4>;
A e(){
	A ret;
	rep(i,4){
		rep(j,4){
			if(i==j)ret[i][j] = 1;
			else ret[i][j] = 0;		
		}
	}
	return ret;
}

A e2(){
	A ret;
	rep(i,4){
		rep(j,4)ret[i][j] = 0;
	}
	return ret;
}

A op(A a,A b){
	A ret = e2();
	rep(i,4){
		rep(j,4){
			rep(k,4)ret[i][k] += a[i][j] * b[j][k];
		}
	}	
	return ret;
}

A mapping(int a,A b){
	if(a==0)return b;
	rep(i,4){
		rep(j,4){
			if(i==j)b[i][j] = 1;
			else b[i][j] = 0;
		}
	}
	return b;
}
/*
A mapping(int a,int b){
	if(b==0)return a;
	rep(i,4){
		rep(j,4){
			if(i==j)a[i][j] = 1;
			else a[i][j] = 0;
		}
	}
	return a;
}
*/
int composition(int a,int b){
	return (a|b);
}
int id(){
	return 0;
}
int main(){
   
	
	int N,Q;
	cin>>N>>Q;
	
	string s;
	cin>>s;
	lazy_segtree<A,op,e,int,mapping,composition,id> seg(N);
	rep(j,N){
		auto A = e2();
		rep(i,4){
			if((i>>(s[j]-'0'))&1)continue;
			A[i][0] ++;
		}
		rep(i,4){
			A[i][i|(1<<(s[j]-'0'))] ++;
		}
		seg.set(j,A);
	}
	rep(i,Q){
		int t,l,r;
		cin>>t>>l>>r;
		l--;
		if(t==1){
			seg.apply(l,r,1);
		}
		else{
			auto ret = seg.prod(l,r);
			mint ans = 0;
			rep(j,4)ans += ret[1][j];
			ans--;
			cout<<ans.val()<<endl;
		}
	}
	return 0;
}
0