結果
問題 | No.2020 Sum of Common Prefix Length |
ユーザー | souta-1326 |
提出日時 | 2022-07-12 15:05:24 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,125 bytes |
コンパイル時間 | 208 ms |
コンパイル使用メモリ | 12,928 KB |
実行使用メモリ | 200,932 KB |
最終ジャッジ日時 | 2024-06-23 12:39:25 |
合計ジャッジ時間 | 33,565 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 498 ms
126,976 KB |
testcase_01 | AC | 502 ms
121,344 KB |
testcase_02 | AC | 500 ms
121,216 KB |
testcase_03 | AC | 514 ms
121,600 KB |
testcase_04 | AC | 530 ms
121,728 KB |
testcase_05 | AC | 516 ms
121,728 KB |
testcase_06 | AC | 515 ms
121,600 KB |
testcase_07 | AC | 1,370 ms
141,568 KB |
testcase_08 | AC | 1,388 ms
141,696 KB |
testcase_09 | AC | 1,360 ms
141,568 KB |
testcase_10 | AC | 1,375 ms
141,696 KB |
testcase_11 | AC | 1,411 ms
141,568 KB |
testcase_12 | AC | 1,413 ms
141,568 KB |
testcase_13 | AC | 1,410 ms
141,696 KB |
testcase_14 | AC | 1,501 ms
141,568 KB |
testcase_15 | AC | 1,577 ms
167,424 KB |
testcase_16 | AC | 1,548 ms
167,552 KB |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
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 | -- | - |
ソースコード
import sys readline = sys.stdin.readline class Fenwick_Tree: def __init__(self,N:int): self.N = N self.dat = [0]*(N+1) def inc(self,p:int): p += 1 while p <= self.N: self.dat[p] += 1 p += p&-p def dec(self,p:int): p += 1 while p <= self.N: self.dat[p] -= 1 p += p&-p def _sum(self,r:int): s = 0 while r: s += self.dat[r] r -= r&-r return s class EulerTour: def __init__(self,G): self.N = len(G) self.begin = [0]*self.N self.end = [0]*self.N self.B_v = Fenwick_Tree(self.N*2) cnt = 0 f = 0 itr = [0]*self.N par = [0]*self.N par[f] = -1 while f != -1: if itr[f] == 0: self.begin[f] = cnt;cnt+=1 if itr[f] == len(G[f]): self.end[f] = cnt;cnt+=1 f = par[f] continue par[G[f][itr[f]]] = f itr[f]+=1 f = G[f][itr[f]-1] def add(self,p:int): self.B_v.inc(self.begin[p]) self.B_v.dec(self.end[p]) def query(self,p:int): return self.B_v._sum(self.begin[p]+1) def main(): N = int(readline()) S = [readline().rstrip() for _ in range(N)] Q = int(readline()) T = [0]*Q X = [0]*Q C = [""]*Q for i in range(Q): I = readline().split() T[i] = int(I[0]);X[i] = int(I[1])-1 if T[i]==1:C[i] = I[2][0] path = [[0] for _ in range(N)] len_node = 1 nex = [[-1]*26 for i in range(400000)] S2 = S[:] for i in range(Q): if T[i] == 1: S2[X[i]] += C[i] for i in range(N): now_node = 0 for c in S2[i]: z = ord(c)-97 if nex[now_node][z] == -1: nex[now_node][z] = len_node len_node += 1 #nex.append([-1]*26) now_node = nex[now_node][z] path[i].append(now_node) V = len_node Eul = EulerTour([[elem for elem in nex[i] if elem != -1] for i in range(V)]) len_S = list(map(len,S)) for i in range(N): for j in range(len_S[i]):Eul.add(path[i][j+1]) for i in range(Q): if T[i] == 1: len_S[X[i]] += 1 Eul.add(path[X[i]][len_S[X[i]]]) else: print(Eul.query(path[X[i]][len_S[X[i]]])) if __name__ == "__main__": main()