結果

問題 No.2964 Obstruction Bingo
ユーザー ゼットゼット
提出日時 2024-11-16 16:25:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 225 ms / 2,468 ms
コード長 1,255 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 96,000 KB
最終ジャッジ日時 2024-11-16 16:26:01
合計ジャッジ時間 8,884 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 47 ms
52,608 KB
testcase_02 AC 58 ms
61,056 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 40 ms
52,480 KB
testcase_05 AC 65 ms
67,072 KB
testcase_06 AC 141 ms
84,608 KB
testcase_07 AC 80 ms
76,544 KB
testcase_08 AC 118 ms
82,304 KB
testcase_09 AC 96 ms
76,544 KB
testcase_10 AC 105 ms
80,256 KB
testcase_11 AC 116 ms
83,072 KB
testcase_12 AC 170 ms
90,496 KB
testcase_13 AC 86 ms
77,952 KB
testcase_14 AC 86 ms
77,312 KB
testcase_15 AC 73 ms
71,936 KB
testcase_16 AC 103 ms
80,128 KB
testcase_17 AC 105 ms
78,848 KB
testcase_18 AC 101 ms
78,720 KB
testcase_19 AC 127 ms
82,176 KB
testcase_20 AC 123 ms
83,456 KB
testcase_21 AC 164 ms
90,624 KB
testcase_22 AC 98 ms
81,408 KB
testcase_23 AC 84 ms
78,336 KB
testcase_24 AC 64 ms
67,072 KB
testcase_25 AC 204 ms
95,616 KB
testcase_26 AC 209 ms
95,872 KB
testcase_27 AC 225 ms
95,872 KB
testcase_28 AC 206 ms
95,872 KB
testcase_29 AC 203 ms
95,616 KB
testcase_30 AC 199 ms
96,000 KB
testcase_31 AC 202 ms
95,872 KB
testcase_32 AC 202 ms
95,744 KB
testcase_33 AC 224 ms
95,616 KB
testcase_34 AC 198 ms
95,744 KB
testcase_35 AC 202 ms
95,744 KB
testcase_36 AC 218 ms
95,616 KB
testcase_37 AC 199 ms
96,000 KB
testcase_38 AC 201 ms
95,744 KB
testcase_39 AC 204 ms
95,872 KB
testcase_40 AC 202 ms
95,744 KB
testcase_41 AC 203 ms
95,872 KB
testcase_42 AC 200 ms
95,744 KB
testcase_43 AC 206 ms
95,872 KB
testcase_44 AC 222 ms
95,616 KB
testcase_45 AC 81 ms
77,184 KB
testcase_46 AC 50 ms
60,416 KB
testcase_47 AC 46 ms
59,136 KB
testcase_48 AC 54 ms
63,872 KB
testcase_49 AC 85 ms
77,440 KB
testcase_50 AC 110 ms
81,920 KB
testcase_51 AC 190 ms
94,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

L,K=map(int,input().split())
S=input()
T=input()
o=(K+1)*L*(2*(L+1))
u1=(2*(L+1))*L
dp=[0]*o
dp[L]=1
mod=998244353
A=list(map(int,input().split()))
z=sum(A)
z=pow(z,-1,mod)
p=z*11
p%=mod
e=2*(L+1)
def f(p,q):
  ans=p*q
  ans%=mod
  return ans
for i in range(K):
  for j in range(L):
    for k in range(-L,L+1):
      if dp[i*u1+j*e+(k+L)]==0:
        continue
      if k==-L or k==L:
        dp[(i+1)*u1+j*e+k+L]+=dp[i*u1+j*e+k+L]
        dp[(i+1)*u1+j*e+k+L]%=mod
      else:
        a,b=S[j],T[(j-k)%L]
        x1=ord(a)-ord('a')
        x2=ord(b)-ord('a')
        p1,p2=A[x1]*z,A[x2]*z
        p1%=mod
        p2%=mod
        if a==b:
          w=i*u1+j*e+k+L
          w1=(i+1)*u1+((j+1)%L)*e+k+L
          w2=(i+1)*u1+j*e+k+L
          dp[w1]+=dp[w]*p1
          dp[w2]+=dp[w]*(1-p1)
          dp[w1]%=mod
          dp[w2]%=mod
        else:
          w=i*u1+j*e+k+L
          w1=(i+1)*u1+((j+1)%L)*e+k+1+L
          w2=(i+1)*u1+j*e+k-1+L
          w3=(i+1)*u1+j*e+k+L
          dp[w1]+=dp[w]*p1
          dp[w2]+=dp[w]*p2
          dp[w3]+=dp[w]*(1-p1-p2)
          dp[w1]%=mod
          dp[w2]%=mod
          dp[w3]%=mod
ans1=0
ans2=0
l=0
for j in range(L):
  ans1+=dp[K*u1+j*e+L+L]
  ans2+=dp[K*u1+j*e+L-L]
  ans1%=mod
  ans2%=mod
print(ans1,ans2)
0