結果
問題 | No.2761 Substitute and Search |
ユーザー | magurofly |
提出日時 | 2024-05-05 16:42:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,783 bytes |
コンパイル時間 | 176 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 772,480 KB |
最終ジャッジ日時 | 2024-11-29 18:17:37 |
合計ジャッジ時間 | 47,949 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 28 ms
30,720 KB |
testcase_01 | AC | 26 ms
17,828 KB |
testcase_02 | AC | 28 ms
17,824 KB |
testcase_03 | MLE | - |
testcase_04 | TLE | - |
testcase_05 | MLE | - |
testcase_06 | TLE | - |
testcase_07 | MLE | - |
testcase_08 | AC | 854 ms
50,088 KB |
testcase_09 | MLE | - |
testcase_10 | TLE | - |
testcase_11 | MLE | - |
testcase_12 | TLE | - |
testcase_13 | MLE | - |
testcase_14 | AC | 1,219 ms
43,264 KB |
testcase_15 | MLE | - |
ソースコード
class TrieNode: __slots__ = ("sum", "children") def __init__(self): self.sum = 0 self.children = [None] * 26 def merge(self, other): self.sum += other.sum for c in range(26): rhs = other.children[c] if rhs: lhs = self.children[c] if lhs: lhs.merge(rhs) else: self.children[c] = rhs class Trie: __slots__ = ("root", "subst") def __init__(self, l): self.root = TrieNode() self.subst = [[[c] for c in range(26)] for _ in range(l)] def add(self, s): cur = self.root cur.sum += 1 for k in range(len(s)): c = s[k] if not cur.children[c]: node = TrieNode() cur.children[c] = node cur = cur.children[c] cur.sum += 1 def substitute(self, k, c, d): x, y = self.subst[k][d], self.subst[k][c] if len(x) < len(y): x, y = y, x for v in y: x.append(v) self.subst[k][d] = x self.subst[k][c] = [] def search(self, s): cur = self.root for k in range(len(s)): d = s[k] last = None for c in self.subst[k][d]: node = cur.children[c] if node: if last: last.merge(node) cur.children[c] = None else: last = node if not last: return 0 cur = last return cur.sum def convert(str): return [ord(str[i]) - 0x61 for i in range(len(str))] N, L, Q = map(int, input().split()) trie = Trie(L) for _ in range(N): trie.add(convert(input().strip())) for _ in range(Q): query = input().strip().split() if query[0] == "1": k = int(query[1]) - 1 c = ord(query[2]) - 0x61 d = ord(query[3]) - 0x61 trie.substitute(k, c, d) else: t = convert(query[1]) print(trie.search(t))