結果
問題 | No.2762 Counting and Deleting |
ユーザー | 👑 binap |
提出日時 | 2024-05-08 05:52:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 678 bytes |
コンパイル時間 | 5,156 ms |
コンパイル使用メモリ | 266,540 KB |
実行使用メモリ | 6,528 KB |
最終ジャッジ日時 | 2024-05-08 22:35:14 |
合計ジャッジ時間 | 60,998 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 627 ms
6,400 KB |
testcase_08 | AC | 641 ms
6,400 KB |
testcase_09 | AC | 624 ms
6,528 KB |
testcase_10 | AC | 627 ms
6,528 KB |
testcase_11 | AC | 9,759 ms
6,528 KB |
testcase_12 | AC | 9,637 ms
6,400 KB |
testcase_13 | AC | 9,670 ms
6,528 KB |
testcase_14 | AC | 9,704 ms
6,528 KB |
testcase_15 | AC | 9,846 ms
6,528 KB |
testcase_16 | TLE | - |
ソースコード
#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; }