結果
問題 | No.2626 Similar But Different Name |
ユーザー |
|
提出日時 | 2024-02-09 22:18:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 5,147 bytes |
コンパイル時間 | 172 ms |
コンパイル使用メモリ | 82,456 KB |
実行使用メモリ | 149,932 KB |
最終ジャッジ日時 | 2024-09-28 15:34:06 |
合計ジャッジ時間 | 16,167 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 12 WA * 23 |
ソースコード
import syssys.setrecursionlimit((1<<19)-1)#import pypyjit#pypyjit.set_param('max_unroll_recursion=-1')import random# https://judge.yosupo.jp/submission/55648# AtCoder Libary v1.4 を python に移植したもの# https://github.com/atcoder/ac-library/blob/master/atcoder/convolution.hppMOD = 998244353IMAG = 911660635IIMAG = 86583718rate2 = (0, 911660635, 509520358, 369330050, 332049552, 983190778, 123842337, 238493703, 975955924, 603855026, 856644456, 131300601, 842657263,730768835, 942482514, 806263778, 151565301, 510815449, 503497456, 743006876, 741047443, 56250497, 867605899, 0)irate2 = (0, 86583718, 372528824, 373294451, 645684063, 112220581, 692852209, 155456985, 797128860, 90816748, 860285882, 927414960, 354738543,109331171, 293255632, 535113200, 308540755, 121186627, 608385704, 438932459, 359477183, 824071951, 103369235, 0)rate3 = (0, 372528824, 337190230, 454590761, 816400692, 578227951, 180142363, 83780245, 6597683, 70046822, 623238099, 183021267, 402682409, 631680428, 344509872, 689220186, 365017329, 774342554, 729444058, 102986190, 128751033, 395565204, 0)irate3 = (0, 509520358, 929031873, 170256584, 839780419, 282974284, 395914482, 444904435, 72135471, 638914820, 66769500, 771127074, 985925487,262319669, 262341272, 625870173, 768022760, 859816005, 914661783, 430819711, 272774365, 530924681, 0)def butterfly(a):n = len(a)h = (n - 1).bit_length()le = 0while le < h:if h - le == 1:p = 1 << (h - le - 1)rot = 1for s in range(1 << le):offset = s << (h - le)for i in range(p):l = a[i + offset]r = a[i + offset + p] * rota[i + offset] = (l + r) % MODa[i + offset + p] = (l - r) % MODrot *= rate2[(~s & -~s).bit_length()]rot %= MODle += 1else:p = 1 << (h - le - 2)rot = 1for s in range(1 << le):rot2 = rot * rot % MODrot3 = rot2 * rot % MODoffset = s << (h - le)for i in range(p):a0 = a[i + offset]a1 = a[i + offset + p] * rota2 = a[i + offset + p * 2] * rot2a3 = a[i + offset + p * 3] * rot3a1na3imag = (a1 - a3) % MOD * IMAGa[i + offset] = (a0 + a2 + a1 + a3) % MODa[i + offset + p] = (a0 + a2 - a1 - a3) % MODa[i + offset + p * 2] = (a0 - a2 + a1na3imag) % MODa[i + offset + p * 3] = (a0 - a2 - a1na3imag) % MODrot *= rate3[(~s & -~s).bit_length()]rot %= MODle += 2def butterfly_inv(a):n = len(a)h = (n - 1).bit_length()le = hwhile le:if le == 1:p = 1 << (h - le)irot = 1for s in range(1 << (le - 1)):offset = s << (h - le + 1)for i in range(p):l = a[i + offset]r = a[i + offset + p]a[i + offset] = (l + r) % MODa[i + offset + p] = (l - r) * irot % MODirot *= irate2[(~s & -~s).bit_length()]irot %= MODle -= 1else:p = 1 << (h - le)irot = 1for s in range(1 << (le - 2)):irot2 = irot * irot % MODirot3 = irot2 * irot % MODoffset = s << (h - le + 2)for i in range(p):a0 = a[i + offset]a1 = a[i + offset + p]a2 = a[i + offset + p * 2]a3 = a[i + offset + p * 3]a2na3iimag = (a2 - a3) * IIMAG % MODa[i + offset] = (a0 + a1 + a2 + a3) % MODa[i + offset + p] = (a0 - a1 + a2na3iimag) * irot % MODa[i + offset + p * 2] = (a0 + a1 - a2 - a3) * irot2 % MODa[i + offset + p * 3] = (a0 - a1 - a2na3iimag) * irot3 % MODirot *= irate3[(~s & -~s).bit_length()]irot %= MODle -= 2def multiply(s, t):n = len(s)m = len(t)if min(n, m) <= 60:a = [0] * (n + m - 1)for i in range(n):if i % 8 == 0:for j in range(m):a[i + j] += s[i] * t[j]a[i + j] %= MODelse:for j in range(m):a[i + j] += s[i] * t[j]return [x % MOD for x in a]a = s.copy()b = t.copy()z = 1 << (n + m - 2).bit_length()a += [0] * (z - n)b += [0] * (z - m)butterfly(a)butterfly(b)for i in range(z):a[i] *= b[i]a[i] %= MODbutterfly_inv(a)a = a[:n + m - 1]iz = pow(z, MOD - 2, MOD)return [v * iz % MOD for v in a]P=(1<<61)-1N,M,K=map(int,input().split())S=input()T=input()s=S.lower()t=T.lower()ok=[1]*Nfor _ in range(5):B=random.randint(1000,10000)bp=pow(B,M,P)cumt=0for i in t:cumt*=Bcumt+=ord(i)cumt%=Pcums=0for i in range(N):cums*=Bcums+=ord(s[i])if i>=M:cums-=bp*ord(s[i-M])cums%=Pif not(i-M+1>=0 and cums==cumt):ok[i-M+1]=0p=[]for i in range(N):if S[i]==s[i]:p.append(1)else:p.append(-1)q=[]for i in range(M):if T[i]==t[i]:q.append(-1)else:q.append(1)pq=multiply(p,q)ans=0for i in range(M-1,M-1+(N-M+1)):if 2<=(pq[i]+M)%MOD<=K*2:if ok[i-(M-1)]:ans+=1print(ans)