結果

問題 No.2964 Obstruction Bingo
ユーザー timitimi
提出日時 2024-11-24 20:03:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 242 ms / 2,468 ms
コード長 1,356 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 77,704 KB
最終ジャッジ日時 2024-11-24 20:03:39
合計ジャッジ時間 9,722 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 37 ms
53,200 KB
testcase_02 AC 65 ms
70,844 KB
testcase_03 AC 39 ms
53,476 KB
testcase_04 AC 39 ms
54,180 KB
testcase_05 AC 74 ms
74,672 KB
testcase_06 AC 155 ms
77,228 KB
testcase_07 AC 85 ms
76,516 KB
testcase_08 AC 133 ms
77,156 KB
testcase_09 AC 89 ms
76,652 KB
testcase_10 AC 114 ms
76,936 KB
testcase_11 AC 141 ms
76,800 KB
testcase_12 AC 195 ms
77,376 KB
testcase_13 AC 95 ms
76,668 KB
testcase_14 AC 95 ms
76,872 KB
testcase_15 AC 81 ms
76,704 KB
testcase_16 AC 122 ms
76,560 KB
testcase_17 AC 115 ms
76,608 KB
testcase_18 AC 99 ms
76,632 KB
testcase_19 AC 135 ms
76,528 KB
testcase_20 AC 141 ms
76,656 KB
testcase_21 AC 204 ms
77,068 KB
testcase_22 AC 125 ms
76,816 KB
testcase_23 AC 104 ms
76,772 KB
testcase_24 AC 73 ms
73,440 KB
testcase_25 AC 227 ms
76,916 KB
testcase_26 AC 226 ms
76,948 KB
testcase_27 AC 228 ms
77,088 KB
testcase_28 AC 238 ms
77,120 KB
testcase_29 AC 230 ms
77,248 KB
testcase_30 AC 228 ms
76,956 KB
testcase_31 AC 228 ms
77,216 KB
testcase_32 AC 221 ms
77,220 KB
testcase_33 AC 241 ms
77,360 KB
testcase_34 AC 222 ms
76,960 KB
testcase_35 AC 226 ms
77,340 KB
testcase_36 AC 226 ms
76,940 KB
testcase_37 AC 228 ms
77,008 KB
testcase_38 AC 237 ms
76,968 KB
testcase_39 AC 222 ms
76,948 KB
testcase_40 AC 222 ms
77,084 KB
testcase_41 AC 225 ms
77,236 KB
testcase_42 AC 235 ms
77,704 KB
testcase_43 AC 242 ms
77,216 KB
testcase_44 AC 235 ms
76,984 KB
testcase_45 AC 98 ms
76,864 KB
testcase_46 AC 46 ms
61,528 KB
testcase_47 AC 46 ms
60,248 KB
testcase_48 AC 93 ms
76,720 KB
testcase_49 AC 97 ms
76,876 KB
testcase_50 AC 141 ms
77,200 KB
testcase_51 AC 220 ms
77,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin, setrecursionlimit
input = stdin.readline
readline = stdin.readline

# N=int(input())
# A=list(map(int, input().split()))
L,K=map(int, input().split())
SS=input()
TT=input()
S=[];T=[]
for i in range(L):
  S.append(ord(SS[i])-ord('a'))
  T.append(ord(TT[i])-ord('a'))
  
A=list(map(int, input().split()))
su=sum(A)
mod=998244353
bb=pow(su,-1,mod)
#bb=1

dp=[[0]*(2*L+10) for i in range(L)]
dp[0][0]=1
for _ in range(K):
  ndp=[[0]*(2*L+10) for _ in range(L)]
  for a in range(L):
    for j in range(-L,L+1):
      d=dp[a][j]
      if abs(j)==L:
        ndp[a][j]+=d 
        ndp[a][j]%=mod 
      else:
        b=(a-j)%L 
        ax,bx=S[a],T[b]
        if ax==bx:
          c=A[ax]*bb%mod 
          ndp[(a+1)%L][j]+=d*c 
          ndp[(a+1)%L][j]%=mod
          
          c=(su-A[ax])*bb%mod
          ndp[a][j]+=d*c
          ndp[a][j]%=mod
          
        else:
          c=A[ax]*bb%mod 
          ndp[(a+1)%L][j+1]+=d*c
          ndp[(a+1)%L][j+1]%=mod
          
          c=A[bx]*bb%mod 
          ndp[a%L][j-1]+=d*c 
          ndp[a%L][j-1]%=mod
          
          c=(su-A[ax]-A[bx])*bb%mod
          ndp[a][j]+=d*c
          ndp[a][j]%=mod 
  dp=ndp  
  
x,y=0,0 
for a in range(L):
  for j in range(-L,L+1):
    if j==-L:
      x+=dp[a][j]
      x%=mod 
    elif j==L:
      y+=dp[a][j]
      y%=mod 
print(y,x)
      
0