結果

問題 No.2992 Range ABCD String Query
ユーザー tnakao0123tnakao0123
提出日時 2024-12-18 13:24:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 429 ms / 6,000 ms
コード長 2,268 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 57,324 KB
実行使用メモリ 35,964 KB
最終ジャッジ日時 2024-12-18 13:24:44
合計ジャッジ時間 13,908 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
6,816 KB
testcase_01 AC 90 ms
6,816 KB
testcase_02 AC 116 ms
6,820 KB
testcase_03 AC 111 ms
6,816 KB
testcase_04 AC 138 ms
6,816 KB
testcase_05 AC 107 ms
6,816 KB
testcase_06 AC 117 ms
6,816 KB
testcase_07 AC 77 ms
6,816 KB
testcase_08 AC 128 ms
6,816 KB
testcase_09 AC 105 ms
6,816 KB
testcase_10 AC 357 ms
35,828 KB
testcase_11 AC 347 ms
35,712 KB
testcase_12 AC 370 ms
35,860 KB
testcase_13 AC 342 ms
35,680 KB
testcase_14 AC 323 ms
35,668 KB
testcase_15 AC 360 ms
35,748 KB
testcase_16 AC 302 ms
19,280 KB
testcase_17 AC 343 ms
35,964 KB
testcase_18 AC 317 ms
35,692 KB
testcase_19 AC 387 ms
35,804 KB
testcase_20 AC 236 ms
35,752 KB
testcase_21 AC 223 ms
35,796 KB
testcase_22 AC 230 ms
35,728 KB
testcase_23 AC 251 ms
35,908 KB
testcase_24 AC 221 ms
35,728 KB
testcase_25 AC 233 ms
35,964 KB
testcase_26 AC 235 ms
35,816 KB
testcase_27 AC 237 ms
35,740 KB
testcase_28 AC 275 ms
35,744 KB
testcase_29 AC 256 ms
35,756 KB
testcase_30 AC 381 ms
35,808 KB
testcase_31 AC 370 ms
35,820 KB
testcase_32 AC 366 ms
35,744 KB
testcase_33 AC 380 ms
35,744 KB
testcase_34 AC 406 ms
35,744 KB
testcase_35 AC 429 ms
35,780 KB
testcase_36 AC 429 ms
35,756 KB
testcase_37 AC 53 ms
6,820 KB
testcase_38 AC 60 ms
6,816 KB
testcase_39 AC 70 ms
6,824 KB
testcase_40 AC 67 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2992.cc:  No.2992 Range ABCD String Query - yukicoder
 */

#include<cstdio>
#include<vector>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 200000;
const int INF = 1 << 30;

/* typedef */

struct Elm {
  int ss[4][4];
  Elm(): ss() {}
  Elm(int d) {
    for (int i = 0; i < 4; i++)
      for (int j = i; j < 4; j++)
	ss[i][j] = (d < i || j < d) ? 1 : 0;
  }

  Elm operator+(const Elm &e) const {
    Elm r;
    
    for (int i = 0; i <= 4; i++)
      for (int j = i; j < 4; j++) {
	r.ss[i][j] = INF;
	for (int k = i; k <= j; k++)
	  r.ss[i][j] = min(r.ss[i][j], ss[i][k] + e.ss[k][j]);
      }

    return r;
  }

  int val() const { return ss[0][3]; }
};

template <typename T>
struct SegTreeSum {
  int e2;
  vector<T> nodes;
  T defv;
  SegTreeSum() {}

  void init(int n, T _defv) {
    defv = _defv;
    for (e2 = 1; e2 < n; e2 <<= 1);
    nodes.assign(e2 * 2, defv);
  }

  T &geti(int i) { return nodes[e2 - 1 + i]; }
  void seti(int i, T v) { geti(i) = v; }

  void setall() {
    for (int j = e2 - 2; j >= 0; j--)
      nodes[j] = nodes[j * 2 + 1] + nodes[j * 2 + 2];
  }

  void set(int i, T v) {
    int j = e2 - 1 + i;
    nodes[j] = v;
    while (j > 0) {
      j = (j - 1) / 2;
      nodes[j] = nodes[j * 2 + 1] + nodes[j * 2 + 2];
    }
  }

  T sum_range(int r0, int r1, int k, int i0, int i1) {
    if (r1 <= i0 || i1 <= r0) return defv;
    if (r0 <= i0 && i1 <= r1) return nodes[k];

    int im = (i0 + i1) / 2;
    T v0 = sum_range(r0, r1, k * 2 + 1, i0, im);
    T v1 = sum_range(r0, r1, k * 2 + 2, im, i1);
    return v0 + v1;
  }
  T sum_range(int r0, int r1) { return sum_range(r0, r1, 0, 0, e2); }
};

/* global variables */

char s[MAX_N + 4];
SegTreeSum<Elm> st;

/* subroutines */

/* main */

int main() {
  int n, qn;
  scanf("%d%d%s", &n, &qn, s);

  st.init(n, Elm());
  for (int i = 0; i < n; i++) st.seti(i, Elm(s[i] - 'A'));
  st.setall();

  while (qn--) {
    int op;
    scanf("%d", &op);

    if (op == 1) {
      int x;
      char c[4];
      scanf("%d%s", &x, c), x--;

      st.set(x, Elm(c[0] - 'A'));
    }
    else {
      int l, r;
      scanf("%d%d", &l, &r), l--;

      auto e = st.sum_range(l, r);
      printf("%d\n", e.val());
    }
  }
  
  return 0;
}
0