結果
問題 | No.2762 Counting and Deleting |
ユーザー | kwm_t |
提出日時 | 2024-05-19 13:44:02 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 223 ms / 4,000 ms |
コード長 | 2,505 bytes |
コンパイル時間 | 5,844 ms |
コンパイル使用メモリ | 321,760 KB |
実行使用メモリ | 12,996 KB |
最終ジャッジ日時 | 2024-12-20 16:59:56 |
合計ジャッジ時間 | 8,995 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,816 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,816 KB |
testcase_05 | AC | 2 ms
6,820 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 198 ms
12,792 KB |
testcase_08 | AC | 198 ms
12,772 KB |
testcase_09 | AC | 198 ms
12,912 KB |
testcase_10 | AC | 197 ms
12,996 KB |
testcase_11 | AC | 216 ms
12,780 KB |
testcase_12 | AC | 213 ms
12,936 KB |
testcase_13 | AC | 223 ms
12,856 KB |
testcase_14 | AC | 211 ms
12,856 KB |
testcase_15 | AC | 216 ms
12,788 KB |
testcase_16 | AC | 221 ms
12,900 KB |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; //using mint = modint1000000007; //const int mod = 1000000007; using mint = modint998244353; const int mod = 998244353; //const int INF = 1e9; //const long long LINF = 1e18; #define rep(i, n) for (int i = 0; i < (n); ++i) #define rep2(i,l,r)for(int i=(l);i<(r);++i) #define rrep(i, n) for (int i = (n) - 1; i >= 0; --i) #define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i) #define all(x) (x).begin(),(x).end() #define allR(x) (x).rbegin(),(x).rend() #define P pair<int,int> template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } template <typename T, int SIZE = 1> struct Matrix { array<array<T, SIZE>, SIZE> v; Matrix(int i = 0) { if (1 == i) { for (int i = 0; i < SIZE; ++i) { v[i][i] = 1; } } } std::array<T, SIZE>& operator[](const int i) { return v[i]; } Matrix(const array<array<T, SIZE>, SIZE> &s) { v = s; } Matrix operator*=(const Matrix & m) { Matrix s(0); for (int i = 0; i < SIZE; ++i) { for (int j = 0; j < SIZE; ++j) { for (int k = 0; k < SIZE; ++k) { s.v[i][j] += v[i][k] * m.v[k][j]; } } } swap(s, *this); return *this; } Matrix operator*(const Matrix other)const { return Matrix(*this) *= other; } }; Matrix<mint, 3> op(Matrix<mint, 3> a, Matrix<mint, 3> b) { return b * a; } Matrix<mint, 3> e() { return Matrix<mint, 3>(1); } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); auto unit = Matrix<mint, 3>(); unit[0] = { 1, 0, 0 }; unit[1] = { 0, 1, 0 }; unit[2] = { 0, 0, 1 }; auto zero = Matrix<mint, 3>(); zero[0] = { 1, 1, 0 }; zero[1] = { 0, 1, 0 }; zero[2] = { 0, 0, 1 }; auto one = Matrix<mint, 3>(); one[0] = { 1, 0, 0 }; one[1] = { 1, 1, 1 }; one[2] = { 0, 0, 1 }; int n, q; cin >> n >> q; string s; cin >> s; vector<Matrix<mint, 3>>init(n); rep(i, n) { if ('0' == s[i])init[i] = zero; else init[i] = one; } segtree<Matrix<mint, 3>, op, e>seg(init); set<int>st; rep(i, n)st.insert(i); while (q--) { int t, l, r; cin >> t >> l >> r; l--; if (1 == t) { auto ite = st.lower_bound(l); while (ite != st.end() && *ite < r) { seg.set(*ite, unit); ite = st.erase(ite); } } else { auto get = seg.prod(l, r); mint ans = get[0][2] + get[1][2]; cout << ans.val() << endl; } } return 0; }