結果

問題 No.2554 MMA文字列2 (Query Version)
ユーザー sepa38sepa38
提出日時 2023-11-23 16:05:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,451 ms / 5,000 ms
コード長 1,497 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 272,208 KB
最終ジャッジ日時 2024-09-26 08:11:33
合計ジャッジ時間 89,871 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,416 KB
testcase_01 AC 43 ms
61,236 KB
testcase_02 AC 94 ms
77,916 KB
testcase_03 AC 99 ms
77,372 KB
testcase_04 AC 127 ms
79,100 KB
testcase_05 AC 110 ms
78,200 KB
testcase_06 AC 106 ms
78,132 KB
testcase_07 AC 108 ms
77,056 KB
testcase_08 AC 81 ms
77,888 KB
testcase_09 AC 124 ms
79,496 KB
testcase_10 AC 114 ms
79,356 KB
testcase_11 AC 87 ms
76,776 KB
testcase_12 AC 330 ms
108,152 KB
testcase_13 AC 2,082 ms
269,188 KB
testcase_14 AC 621 ms
124,500 KB
testcase_15 AC 1,765 ms
261,556 KB
testcase_16 AC 1,261 ms
183,352 KB
testcase_17 AC 1,771 ms
236,816 KB
testcase_18 AC 801 ms
121,256 KB
testcase_19 AC 976 ms
158,336 KB
testcase_20 AC 1,997 ms
269,084 KB
testcase_21 AC 935 ms
138,292 KB
testcase_22 AC 2,254 ms
269,624 KB
testcase_23 AC 2,279 ms
269,568 KB
testcase_24 AC 2,355 ms
269,440 KB
testcase_25 AC 2,272 ms
268,900 KB
testcase_26 AC 2,344 ms
268,804 KB
testcase_27 AC 2,315 ms
269,312 KB
testcase_28 AC 2,373 ms
269,532 KB
testcase_29 AC 2,362 ms
268,892 KB
testcase_30 AC 2,436 ms
269,468 KB
testcase_31 AC 2,247 ms
269,280 KB
testcase_32 AC 417 ms
80,308 KB
testcase_33 AC 414 ms
80,008 KB
testcase_34 AC 408 ms
79,712 KB
testcase_35 AC 444 ms
81,432 KB
testcase_36 AC 445 ms
81,548 KB
testcase_37 AC 2,082 ms
201,728 KB
testcase_38 AC 2,144 ms
200,768 KB
testcase_39 AC 2,173 ms
201,020 KB
testcase_40 AC 2,232 ms
203,052 KB
testcase_41 AC 2,171 ms
203,260 KB
testcase_42 AC 2,173 ms
227,400 KB
testcase_43 AC 2,311 ms
228,016 KB
testcase_44 AC 2,252 ms
227,736 KB
testcase_45 AC 2,260 ms
227,796 KB
testcase_46 AC 2,189 ms
228,608 KB
testcase_47 AC 2,396 ms
271,320 KB
testcase_48 AC 2,390 ms
270,952 KB
testcase_49 AC 2,402 ms
271,844 KB
testcase_50 AC 2,275 ms
270,828 KB
testcase_51 AC 2,330 ms
270,428 KB
testcase_52 AC 2,400 ms
271,988 KB
testcase_53 AC 2,451 ms
272,156 KB
testcase_54 AC 2,369 ms
271,208 KB
testcase_55 AC 2,336 ms
272,208 KB
testcase_56 AC 2,395 ms
271,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segt:
  def __init__(self, n, calc):
    self.num = 2 ** (n - 1).bit_length()
    self.data = [[0]*53 for _ in range(2*self.num)]
    self.calc = calc

  def update(self, idx, x):
    idx += self.num - 1
    self.data[idx] = [0] * 53
    self.data[idx][x] = 1
    while idx > 0:
      idx = (idx - 1) >> 1
      self.data[idx] = self.calc(self.data[2*idx+1][:], self.data[2*idx+2][:])[:]

  def renew(self, idx, x):
    self.update(idx, self.calc(self.get(idx), x))

  def prod(self, left, right):
    l = left + self.num
    r = right + self.num
    res_l = [0] * 53
    res_r = [0] * 53
    while l < r:
      if l % 2:
        res_l = self.calc(res_l[:], self.data[l-1][:])[:]
        l += 1
      if r % 2:
        r -= 1
        res_r = self.calc(self.data[r-1][:], res_r[:])[:]
      l >>= 1
      r >>= 1
    return self.calc(res_l, res_r)

  def get(self, idx):
    return self.data[idx+self.num-1]

def func(x, y):
  res = [x[i] + y[i] for i in range(53)]
  s = sum(y[:26])
  for i in range(26):
    res[i+26] += x[i] * (s - y[i])
  for i in range(26):
    res[52] += x[i] * (x[i] - 1) // 2 * (s - y[i])
    res[52] += x[i] * y[i+26]

  return res


n = int(input())
s = list(map(lambda x: ord(x)-65, input()))
st = segt(n, func)
for i in range(n):
  st.update(i, s[i])
for _ in range(int(input())):
  t, x, y = map(str, input().split())
  if t == "1":
    x = int(x) - 1
    y = ord(y) - 65
    st.update(x, y)
  else:
    l = int(x) - 1
    r = int(y)
    print(st.prod(l, r)[52])
0