結果

問題 No.2020 Sum of Common Prefix Length
ユーザー 👑 rin204rin204
提出日時 2022-07-22 22:42:45
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,490 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 87,192 KB
実行使用メモリ 93,040 KB
最終ジャッジ日時 2023-09-17 11:15:15
合計ジャッジ時間 14,232 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,352 KB
testcase_01 AC 72 ms
71,256 KB
testcase_02 AC 72 ms
71,128 KB
testcase_03 AC 137 ms
78,552 KB
testcase_04 AC 133 ms
78,140 KB
testcase_05 AC 135 ms
78,900 KB
testcase_06 AC 135 ms
77,928 KB
testcase_07 AC 1,558 ms
89,116 KB
testcase_08 AC 1,579 ms
89,540 KB
testcase_09 AC 1,559 ms
89,340 KB
testcase_10 AC 1,558 ms
90,184 KB
testcase_11 AC 1,070 ms
90,152 KB
testcase_12 AC 1,332 ms
89,196 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class Node:
    def __init__(self):
        self.nex = [None] * 26
        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([ord(s) - 97 for s in S])
    V = V0
    for s in SS[i]:
        if V.nex[s] is None:
            V.nex[s] = Node()
        V = V.nex[s]
        V.tot += 1
    Vs[i] = V

B = 750
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]
        s = ord(s) - 97
        SS[i].append(s)
        V = Vs[i]
        if V.nex[s] is None:
            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])
0