結果

問題 No.2020 Sum of Common Prefix Length
ユーザー souta-1326
提出日時 2022-07-12 23:32:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 885 ms / 2,000 ms
コード長 2,125 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 288,100 KB
最終ジャッジ日時 2024-06-23 21:43:48
合計ジャッジ時間 24,064 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 38
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from copy import deepcopy
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 = [list(map(lambda c:ord(c)-97,readline().rstrip())) for _ in range(N)]
  Q = int(readline())
  Query = [tuple()]*Q
  for i in range(Q):
    I = readline().split()
    Query[i] = tuple([int(I[0]),int(I[1])-1,(0 if I[0]=="2" else ord(I[2][0])-97)])
  len_node = 1
  nex = [[-1]*26 for i in range(400000)]
  S2 = deepcopy(S)
  for t,x,c in Query:
    if t == 1:
      S2[x].append(c)
  for i in range(N):
    now_node = 0
    for z in S2[i]:
      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]
 
  V = len_node
  Eul = EulerTour([[elem for elem in nex[i] if elem != -1] for i in range(V)])
  now_nodes = [0]*N
  for i in range(N):
    for z in S[i]:
      now_nodes[i] = nex[now_nodes[i]][z]
      Eul.add(now_nodes[i])
  for t,x,c in Query:
    if t == 1:
      now_nodes[x] = nex[now_nodes[x]][c]
      Eul.add(now_nodes[x])
    else:
      print(Eul.query(now_nodes[x]))

if __name__ == "__main__":
  main()
0