結果

問題 No.2762 Counting and Deleting
ユーザー 👑 binapbinap
提出日時 2024-05-08 07:02:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 852 bytes
コンパイル時間 4,473 ms
コンパイル使用メモリ 222,760 KB
実行使用メモリ 14,008 KB
最終ジャッジ日時 2024-05-08 22:35:20
合計ジャッジ時間 18,314 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 636 ms
6,944 KB
testcase_08 AC 630 ms
6,944 KB
testcase_09 AC 631 ms
6,940 KB
testcase_10 AC 630 ms
6,940 KB
testcase_11 TLE -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")

#include<bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
using namespace std;

const int MOD = 998244353;

int main(){
	int n, q;
	cin >> n >> q;
	string s;
	cin >> s;
	set<int> rest;
	rep(i, n) rest.insert(i);
	rep(i, q){
		int t, l, r;
		cin >> t >> l >> r;
		l--; r--;
		if(t == 1){
			while(true){
				auto it = rest.lower_bound(l);
				if(it == rest.end()) break;
				if(*it > r) break;
				s[*it] = '_';
				rest.erase(it);
			}
		}
		if(t == 2){
			int f = 0;
			int g = 0;
			for(int i = l; i <= r; i++){
				if(s[i] == '0'){
					f = f + g;
					if(f >= MOD) f-= MOD;
				}
				if(s[i] == '1'){
					g = f + g + 1;
					if(g >= MOD) g-= MOD;
				}
			}
			int ans = f + g;
			if(ans >= MOD) ans -= MOD;
			cout << ans << "\n";
		}
	}
	return 0;
}
0