結果

問題 No.2761 Substitute and Search
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-05-17 22:31:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,063 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 22,944 KB
最終ジャッジ日時 2024-05-17 22:32:03
合計ジャッジ時間 7,139 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
17,952 KB
testcase_01 AC 26 ms
10,880 KB
testcase_02 AC 27 ms
11,008 KB
testcase_03 AC 26 ms
11,008 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
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 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 i in range(26):
            if char_cur[k][i] == c:
                char_cur[k][i] = 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][ord(key) - ord('a')] == t[i]:
                        cur_next.append(value[1])
                        ans += value[0]
            cur = cur_next
        print(ans)
0