結果

問題 No.2761 Substitute and Search
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-17 22:18:08
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,059 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,516 KB
実行使用メモリ 849,104 KB
最終ジャッジ日時 2024-05-17 22:18:28
合計ジャッジ時間 6,560 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
64,536 KB
testcase_01 AC 49 ms
64,672 KB
testcase_02 AC 49 ms
65,256 KB
testcase_03 AC 51 ms
64,260 KB
testcase_04 AC 2,045 ms
91,460 KB
testcase_05 AC 333 ms
90,664 KB
testcase_06 MLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from string import ascii_lowercase

n, l, q = map(int, input().split())
s = [input() for _ in range(n)]
tree = {}
for t in s:
    current = tree
    for c in t:
        if c in current:
            current[c][0] += 1
        else:
            current[c] = [1, {}]
        current = current[c][1]

char_cur = [{c: c for c in ascii_lowercase} for _ in range(l)]
for _ in range(q):
    query = input().split()
    com = int(query[0])
    if com == 1:
        k, c, d = query[1:]
        k = int(k) - 1
        for ch in ascii_lowercase:
            if char_cur[k][ch] == c:
                char_cur[k][ch] = d
    else:
        t = query[1]
        cur = [tree]
        ans = 0
		# count the number of words that start with t
        for i in range(len(t)):
            cur_next = []
            ans = 0
            for tr in cur:
                for key, value in tr.items():
                    if char_cur[i][key] == t[i]:
                        cur_next.append(value[1])
                        ans += value[0]
            cur = cur_next
        print(ans)
0