結果
問題 | No.2554 MMA文字列2 (Query Version) |
ユーザー | StanMarsh |
提出日時 | 2023-11-30 16:48:23 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 2,769 ms / 5,000 ms |
コード長 | 1,752 bytes |
コンパイル時間 | 227 ms |
コンパイル使用メモリ | 82,560 KB |
実行使用メモリ | 272,272 KB |
最終ジャッジ日時 | 2024-09-26 14:09:39 |
合計ジャッジ時間 | 98,653 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
60,160 KB |
testcase_01 | AC | 55 ms
61,312 KB |
testcase_02 | AC | 116 ms
77,952 KB |
testcase_03 | AC | 120 ms
77,120 KB |
testcase_04 | AC | 158 ms
79,228 KB |
testcase_05 | AC | 131 ms
78,204 KB |
testcase_06 | AC | 127 ms
78,320 KB |
testcase_07 | AC | 124 ms
77,312 KB |
testcase_08 | AC | 99 ms
77,680 KB |
testcase_09 | AC | 146 ms
79,096 KB |
testcase_10 | AC | 134 ms
79,356 KB |
testcase_11 | AC | 106 ms
76,532 KB |
testcase_12 | AC | 404 ms
108,416 KB |
testcase_13 | AC | 2,334 ms
269,176 KB |
testcase_14 | AC | 714 ms
124,756 KB |
testcase_15 | AC | 2,082 ms
261,548 KB |
testcase_16 | AC | 1,407 ms
183,868 KB |
testcase_17 | AC | 1,952 ms
236,808 KB |
testcase_18 | AC | 888 ms
121,900 KB |
testcase_19 | AC | 1,142 ms
158,848 KB |
testcase_20 | AC | 2,300 ms
269,216 KB |
testcase_21 | AC | 1,065 ms
138,288 KB |
testcase_22 | AC | 2,549 ms
269,756 KB |
testcase_23 | AC | 2,574 ms
269,568 KB |
testcase_24 | AC | 2,634 ms
269,184 KB |
testcase_25 | AC | 2,560 ms
268,728 KB |
testcase_26 | AC | 2,603 ms
269,568 KB |
testcase_27 | AC | 2,693 ms
269,312 KB |
testcase_28 | AC | 2,619 ms
269,824 KB |
testcase_29 | AC | 2,647 ms
269,152 KB |
testcase_30 | AC | 2,702 ms
269,088 KB |
testcase_31 | AC | 2,542 ms
269,696 KB |
testcase_32 | AC | 442 ms
79,800 KB |
testcase_33 | AC | 455 ms
79,888 KB |
testcase_34 | AC | 437 ms
79,696 KB |
testcase_35 | AC | 492 ms
80,792 KB |
testcase_36 | AC | 493 ms
81,544 KB |
testcase_37 | AC | 2,344 ms
201,600 KB |
testcase_38 | AC | 2,422 ms
200,916 KB |
testcase_39 | AC | 2,413 ms
200,892 KB |
testcase_40 | AC | 2,457 ms
202,924 KB |
testcase_41 | AC | 2,479 ms
203,648 KB |
testcase_42 | AC | 2,589 ms
227,544 KB |
testcase_43 | AC | 2,523 ms
227,892 KB |
testcase_44 | AC | 2,597 ms
228,224 KB |
testcase_45 | AC | 2,592 ms
228,224 KB |
testcase_46 | AC | 2,565 ms
228,352 KB |
testcase_47 | AC | 2,752 ms
271,732 KB |
testcase_48 | AC | 2,703 ms
271,080 KB |
testcase_49 | AC | 2,753 ms
271,544 KB |
testcase_50 | AC | 2,680 ms
270,976 KB |
testcase_51 | AC | 2,630 ms
270,976 KB |
testcase_52 | AC | 2,622 ms
272,252 KB |
testcase_53 | AC | 2,769 ms
272,272 KB |
testcase_54 | AC | 2,735 ms
270,804 KB |
testcase_55 | AC | 2,723 ms
272,208 KB |
testcase_56 | AC | 2,724 ms
271,860 KB |
ソースコード
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])