結果

問題 No.2761 Substitute and Search
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-05-17 23:50:27
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,101 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,660 KB
実行使用メモリ 306,572 KB
最終ジャッジ日時 2024-05-17 23:50:55
合計ジャッジ時間 9,819 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
60,544 KB
testcase_01 AC 39 ms
60,868 KB
testcase_02 AC 42 ms
60,872 KB
testcase_03 AC 38 ms
61,416 KB
testcase_04 AC 2,442 ms
241,928 KB
testcase_05 TLE -
testcase_06 AC 1,166 ms
225,164 KB
testcase_07 AC 2,439 ms
230,424 KB
testcase_08 AC 1,147 ms
225,452 KB
testcase_09 AC 2,500 ms
230,236 KB
testcase_10 AC 1,121 ms
225,256 KB
testcase_11 AC 2,485 ms
229,468 KB
testcase_12 AC 2,051 ms
227,776 KB
testcase_13 AC 2,084 ms
227,540 KB
testcase_14 AC 2,069 ms
227,952 KB
testcase_15 AC 2,132 ms
228,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
  def __init__(self,n,M):
    self.s=n
    self.d=[0]*n
    self.m=M
    return
  def update(self,p,x):
    p+=1
    while p<=self.s:
      self.d[p-1]+=x
      self.d[p-1]%=self.m
      p+=p&(-p)
    return
  def getsum(self,p):
    p+=1
    a=0
    while p>0:
      a+=self.d[p-1]
      a%=self.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]

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

S=[]
s1=[]
for i in range(n):
  s=input()
  S+=[list(s)]
  s1+=[BIT(l,M1)]
  for j in range(l):
    s1[i].update(j,ord(s[j])*P1[j]%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:
        s1[i].update(k,(-c+d)*P1[k]%M1)
        S[i][k]=chr(d)
  else:
    _,t=query
    t=list(t)
    ht1=0
    for i in range(len(t)):
      ht1+=ord(t[i])*P1[i]
      ht1%=M1
    g=0
    for i in range(n):
      if s1[i].getsum(len(t)-1)==ht1:
        g+=1
    print(g)
0