結果

問題 No.2761 Substitute and Search
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-05-17 23:10:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,057 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,580 KB
実行使用メモリ 302,052 KB
最終ジャッジ日時 2024-05-17 23:11:15
合計ジャッジ時間 8,448 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
60,564 KB
testcase_01 AC 39 ms
60,888 KB
testcase_02 AC 42 ms
60,108 KB
testcase_03 AC 43 ms
60,856 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 1,070 ms
224,768 KB
testcase_11 AC 952 ms
221,160 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1,120 ms
223,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,l,q=map(int,input().split())

def update(st,p,x,M):
  p+=1
  while p<=len(st):
    st[p-1]+=x
    st[p-1]%=M
    p+=p&(-p)
  return

def getsum(st,p,M):
  p+=1
  a=0
  while p>0:
    a+=st[p-1]
    a%=M
    p-=p&(-p)
  return a

B1=1007
M1=1000000007

P1=[1]
for i in range(1,3001):
  P1+=[P1[-1]*B1%M1]
R1=[1,pow(B1,M1-2,M1)]
for i in range(2,3001):
  R1+=[R1[-1]*R1[1]%M1]

S=[]
s1=[]
for i in range(n):
  s=input()
  S+=[list(s)]
  s1+=[[0]*l]
  for j in range(l):
    update(s1[i],j,ord(s[j])*P1[j]%M1,M1)

for _ in range(q):
  query=input().split()
  if int(query[0])==1:
    _,k,c,d=query
    k=int(k)-1
    c=ord(c)
    d=ord(d)
    for i in range(n):
      if ord(S[i][k])==c:
        update(s1[i],k,(-c+d)*P1[k]%M1,M1)
        S[i][k]=chr(d)
  else:
    _,t=query
    h1=0
    for i in range(len(t)):
      h1+=ord(t[i])*P1[i]
      h1%=M1
    g=0
    for i in range(n):
      if len(t)<=10:
        g+=t==S[i][:len(t)]
      else:
        if t[:10]!=S[i][:10]:
          continue
      if getsum(s1[i],len(t)-1,M1)==h1:
        g+=1
    print(g)
0