結果

問題 No.2762 Counting and Deleting
ユーザー 👑 binapbinap
提出日時 2024-05-08 07:00:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 9,676 ms / 4,000 ms
コード長 760 bytes
コンパイル時間 2,003 ms
コンパイル使用メモリ 205,696 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-05-08 22:35:49
合計ジャッジ時間 62,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 546 ms
6,400 KB
testcase_08 AC 546 ms
6,400 KB
testcase_09 AC 546 ms
6,400 KB
testcase_10 AC 544 ms
6,528 KB
testcase_11 AC 9,522 ms
6,400 KB
testcase_12 AC 9,578 ms
6,400 KB
testcase_13 AC 9,676 ms
6,400 KB
testcase_14 AC 9,568 ms
6,400 KB
testcase_15 AC 9,358 ms
6,400 KB
testcase_16 AC 9,405 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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