結果

問題 No.2992 Range ABCD String Query
ユーザー KudeKude
提出日時 2024-12-17 01:21:45
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 6,000 ms
コード長 1,393 bytes
コンパイル時間 3,810 ms
コンパイル使用メモリ 277,224 KB
実行使用メモリ 39,704 KB
最終ジャッジ日時 2024-12-17 01:21:59
合計ジャッジ時間 11,005 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
6,816 KB
testcase_01 AC 54 ms
6,820 KB
testcase_02 AC 59 ms
6,816 KB
testcase_03 AC 55 ms
6,816 KB
testcase_04 AC 65 ms
6,820 KB
testcase_05 AC 51 ms
6,816 KB
testcase_06 AC 56 ms
6,816 KB
testcase_07 AC 42 ms
6,820 KB
testcase_08 AC 58 ms
6,816 KB
testcase_09 AC 53 ms
6,816 KB
testcase_10 AC 171 ms
37,852 KB
testcase_11 AC 168 ms
37,112 KB
testcase_12 AC 169 ms
37,324 KB
testcase_13 AC 186 ms
35,036 KB
testcase_14 AC 161 ms
34,368 KB
testcase_15 AC 156 ms
34,596 KB
testcase_16 AC 144 ms
23,088 KB
testcase_17 AC 171 ms
39,084 KB
testcase_18 AC 160 ms
34,296 KB
testcase_19 AC 214 ms
39,400 KB
testcase_20 AC 126 ms
39,636 KB
testcase_21 AC 122 ms
39,640 KB
testcase_22 AC 123 ms
39,608 KB
testcase_23 AC 125 ms
39,704 KB
testcase_24 AC 128 ms
39,648 KB
testcase_25 AC 173 ms
39,496 KB
testcase_26 AC 149 ms
39,564 KB
testcase_27 AC 147 ms
39,660 KB
testcase_28 AC 180 ms
39,492 KB
testcase_29 AC 170 ms
39,492 KB
testcase_30 AC 149 ms
39,668 KB
testcase_31 AC 145 ms
39,644 KB
testcase_32 AC 147 ms
39,636 KB
testcase_33 AC 152 ms
39,492 KB
testcase_34 AC 184 ms
39,644 KB
testcase_35 AC 188 ms
39,584 KB
testcase_36 AC 187 ms
39,644 KB
testcase_37 AC 36 ms
6,820 KB
testcase_38 AC 38 ms
6,816 KB
testcase_39 AC 43 ms
6,816 KB
testcase_40 AC 42 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include <atcoder/all>
using namespace std;
using namespace atcoder;

struct S {
  int a00, a01, a02, a03, a11, a12, a13, a22, a23, a33;
};
S op(S A, S B) {
  return S{
      A.a00 + B.a00,
      min(A.a00 + B.a01, A.a01 + B.a11),
      min(A.a00 + B.a02, min(A.a01 + B.a12, A.a02 + B.a22)),
      min(A.a00 + B.a03, min(A.a01 + B.a13, min(A.a02 + B.a23, A.a03 + B.a33))),
      A.a11 + B.a11,
      min(A.a11 + B.a12, A.a12 + B.a22),
      min(A.a11 + B.a13, min(A.a12 + B.a23, A.a13 + B.a33)),
      A.a22 + B.a22,
      min(A.a22 + B.a23, A.a23 + B.a33),
      A.a33 + B.a33};
}
S e() { return S{}; }

}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int n, q;
  cin >> n >> q;
  string s;
  cin >> s;
  vector<S> init(n);
  S c2mat[]{S{0, 0, 0, 0, 1, 1, 1, 1, 1, 1}, S{1, 0, 0, 0, 0, 0, 0, 1, 1, 1},
            S{1, 1, 0, 0, 1, 0, 0, 0, 0, 1}, S{1, 1, 1, 0, 1, 1, 0, 1, 0, 0}};
  segtree<S, op, e> seg([&]() {
    vector<S> init(n);
    for (int i = 0; i < n; i++) init[i] = c2mat[s[i] - 'A'];
    return init;
  }());
  while (q--) {
    int type;
    cin >> type;
    if (type == 1) {
      int x;
      char c;
      cin >> x >> c;
      seg.set(x - 1, c2mat[c - 'A']);
    } else {
      int l, r;
      cin >> l >> r;
      cout << seg.prod(l - 1, r).a03 << '\n';
    }
  }
}
0