結果
問題 | No.2020 Sum of Common Prefix Length |
ユーザー | 👑 rin204 |
提出日時 | 2022-07-22 22:39:09 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,432 bytes |
コンパイル時間 | 188 ms |
コンパイル使用メモリ | 82,364 KB |
実行使用メモリ | 102,268 KB |
最終ジャッジ日時 | 2024-07-04 07:11:13 |
合計ジャッジ時間 | 14,639 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
59,548 KB |
testcase_01 | AC | 39 ms
52,656 KB |
testcase_02 | AC | 39 ms
51,712 KB |
testcase_03 | AC | 101 ms
77,440 KB |
testcase_04 | AC | 108 ms
77,620 KB |
testcase_05 | AC | 107 ms
76,800 KB |
testcase_06 | AC | 99 ms
77,184 KB |
testcase_07 | AC | 1,637 ms
97,312 KB |
testcase_08 | AC | 1,670 ms
97,036 KB |
testcase_09 | AC | 1,647 ms
97,164 KB |
testcase_10 | AC | 1,631 ms
97,280 KB |
testcase_11 | AC | 1,097 ms
97,004 KB |
testcase_12 | AC | 1,402 ms
97,204 KB |
testcase_13 | TLE | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
ソースコード
class Node: def __init__(self): self.nex = {} self.ind = [] self.tot = 0 n = int(input()) V0 = Node() Vs = [None] * n ans = [0] * n SS = [] for i in range(n): S = input() SS.append(list(S)) V = V0 for s in S: if s not in V.nex: V.nex[s] = Node() V = V.nex[s] V.tot += 1 Vs[i] = V B = 600 for i, S in enumerate(SS): V = V0 flg = len(S) >= B for s in S: V = V.nex[s] ans[i] += V.tot if flg: V.ind.append(i) Q = int(input()) for _ in range(Q): query = input().split() if query[0] == "1": i = int(query[1]) - 1 s = query[2] SS[i].append(s) V = Vs[i] if s not in V.nex: V.nex[s] = Node() V = V.nex[s] V.tot += 1 for j in V.ind: ans[j] += 1 le = len(SS) if le < B: pass elif le == B: ans[i] = 0 V = V0 for s in SS[i]: V = V.nex[s] ans[i] += V.tot V.ind.append(i) else: V.ind.append(i) ans[i] += V.tot Vs[i] = V else: i = int(query[1]) - 1 le = len(SS[i]) if le < B: ans[i] = 0 V = V0 for s in SS[i]: V = V.nex[s] ans[i] += V.tot print(ans[i])