結果

問題 No.2626 Similar But Different Name
ユーザー titiatitia
提出日時 2024-02-10 00:34:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,284 ms / 3,000 ms
コード長 3,447 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 201,724 KB
最終ジャッジ日時 2024-09-28 16:46:36
合計ジャッジ時間 22,624 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,312 KB
testcase_01 AC 37 ms
53,280 KB
testcase_02 AC 38 ms
53,316 KB
testcase_03 AC 37 ms
53,032 KB
testcase_04 AC 38 ms
52,932 KB
testcase_05 AC 38 ms
54,504 KB
testcase_06 AC 37 ms
53,288 KB
testcase_07 AC 72 ms
76,620 KB
testcase_08 AC 69 ms
74,228 KB
testcase_09 AC 65 ms
72,884 KB
testcase_10 AC 81 ms
76,920 KB
testcase_11 AC 79 ms
76,728 KB
testcase_12 AC 81 ms
76,992 KB
testcase_13 AC 80 ms
76,708 KB
testcase_14 AC 78 ms
76,948 KB
testcase_15 AC 81 ms
76,628 KB
testcase_16 AC 80 ms
76,736 KB
testcase_17 AC 78 ms
76,636 KB
testcase_18 AC 677 ms
201,724 KB
testcase_19 AC 459 ms
139,596 KB
testcase_20 AC 446 ms
138,060 KB
testcase_21 AC 447 ms
138,092 KB
testcase_22 AC 1,148 ms
167,260 KB
testcase_23 AC 1,120 ms
169,544 KB
testcase_24 AC 1,284 ms
161,572 KB
testcase_25 AC 1,147 ms
164,264 KB
testcase_26 AC 1,168 ms
167,884 KB
testcase_27 AC 1,201 ms
168,836 KB
testcase_28 AC 1,135 ms
151,260 KB
testcase_29 AC 1,164 ms
161,752 KB
testcase_30 AC 1,150 ms
150,184 KB
testcase_31 AC 1,160 ms
152,304 KB
testcase_32 AC 1,117 ms
168,432 KB
testcase_33 AC 1,146 ms
169,740 KB
testcase_34 AC 1,150 ms
161,528 KB
testcase_35 AC 1,154 ms
151,848 KB
testcase_36 AC 1,267 ms
161,308 KB
testcase_37 AC 672 ms
201,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,K=map(int,input().split())
S=input().strip()
T=input().strip()

A=[]
B=[]
SA=[]
SB=[]
for s in S:
    if ord(s)<97:
        A.append(1)
        SA.append(ord(s)-65)
    else:
        A.append(998244352)
        SA.append(ord(s)-97)

for t in T:
    if ord(t)<97:
        B.append(1)
        SB.append(ord(t)-65)
    else:
        B.append(998244352)
        SB.append(ord(t)-97)

# FFT
# mod=998244353 における、NTTによる高速フーリエ変換、畳み込み
# 他の提出を参考にしており、あまり理解できていません……
mod=998244353
 
Weight=[1, 998244352, 911660635, 372528824, 929031873, 452798380, 922799308, 781712469, 476477967, 166035806, 258648936, 584193783, 63912897, 350007156, 666702199, 968855178, 629671588, 24514907, 996173970, 363395222, 565042129, 733596141, 267099868, 15311432, 0]
Weight_inv=[1, 998244352, 86583718, 509520358, 337190230, 87557064, 609441965, 135236158, 304459705, 685443576, 381598368, 335559352, 129292727, 358024708, 814576206, 708402881, 283043518, 3707709, 121392023, 704923114, 950391366, 428961804, 382752275, 469870224, 0]
 
def fft(A,n,h,inverse=0):
 
    if inverse==0:
    
        for i in range(h):
            m=1<<(h-i-1)
            for j in range(1<<i):
                w=1     
                ij=j*m*2
                
                wk=Weight[h-i]
                    
                for k in range(m):
                    A[ij+k],A[ij+k+m]=(A[ij+k]+A[ij+k+m])%mod,(A[ij+k]-A[ij+k+m])*w%mod
                    w=w*wk%mod
    else:
        for i in range(h):
            m=1<<i
            for j in range(1<<(h-i-1)):
                w=1     
                ij=j*m*2
                
                wk=Weight_inv[i+1]
                    
                for k in range(m):
                    A[ij+k],A[ij+k+m]=(A[ij+k]+A[ij+k+m]*w)%mod,(A[ij+k]-A[ij+k+m]*w)%mod
                    w=w*wk%mod
        
 
    if inverse==1:
        INV_n=pow(n,mod-2,mod)
        for i in range(n):
            A[i]=A[i]*INV_n%mod
 
    return A
 
def convolution(A,B):
    
    FFTLEN=len(A)+len(B)-1
    h=FFTLEN.bit_length()
    LEN=2**h
 
    A+=[0]*(LEN-len(A)) # A,Bのサイズを2ベキに揃える
    B+=[0]*(LEN-len(B))
 
    A_FFT=fft(A,LEN,h)
    B_FFT=fft(B,LEN,h)
 
    for i in range(len(A)):
        A[i]=A[i]*B[i]%mod
 
    A=fft(A,LEN,h,1)
 
    return A[:FFTLEN]

X=convolution(A,B[::-1])

# Rolling Hash
LEN=len(S)

p=26 # 文字の種類
mod=67280421310721 # Hashがぶつからない, pと互いに素な数を適当に指定

TABLE=[0] # Rolling Hashのテーブル. 最初は0

for i in range(LEN):
    TABLE.append((p*TABLE[-1]%mod+SA[i])%mod) # テーブルを埋める

def hash_ij(i,j): # [i,j)のハッシュ値を求める
    return (TABLE[j]-TABLE[i]*pow(p,j-i,mod))%mod

LEN=len(T)

p=26 # 文字の種類
mod=67280421310721 # Hashがぶつからない, pと互いに素な数を適当に指定

TABLE2=[0] # Rolling Hashのテーブル. 最初は0

for i in range(LEN):
    TABLE2.append(p*TABLE2[-1]%mod+SB[i]%mod) # テーブルを埋める

def hash_ij2(i,j): # [i,j)のハッシュ値を求める
    return (TABLE2[j]-TABLE2[i]*pow(p,j-i,mod))%mod

ANS=0
for i in range(N-M+1):
    if hash_ij(i,i+M)== hash_ij2(0,M):
        #print(X[i+M-1])
        if M-2*K<=X[i+M-1]<M:
            ANS+=1
        elif M-2*K<0 and (M-2*K)%998244353<=X[i+M-1]:
            ANS+=1

print(ANS)
        
0