結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
64,876 KB
testcase_01 AC 56 ms
64,280 KB
testcase_02 AC 54 ms
64,980 KB
testcase_03 AC 53 ms
63,976 KB
testcase_04 WA -
testcase_05 WA -
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 = {}

# Trieの構築
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 = {i: {c: c for c in ascii_lowercase} for i 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
        char_cur[k][c] = d
    else:
        t = query[1]
        cur = [tree]
        ans = 0
        # 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