結果

問題 No.2762 Counting and Deleting
ユーザー 👑 binapbinap
提出日時 2024-05-08 05:52:19
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 678 bytes
コンパイル時間 5,106 ms
コンパイル使用メモリ 267,320 KB
実行使用メモリ 13,096 KB
最終ジャッジ日時 2024-12-15 06:33:36
合計ジャッジ時間 37,989 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

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

using mint = atcoder::modint998244353;

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){
			mint f = 0;
			mint g = 0;
			for(int i = l; i <= r; i++){
				if(s[i] == '0') f = f + g;
				if(s[i] == '1') g = f + g + 1;
			}
			cout << (f + g).val() << "\n";
		}
	}
	return 0;
}
0