結果

問題 No.2964 Obstruction Bingo
ユーザー titiatitia
提出日時 2024-11-25 03:41:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,339 ms / 2,468 ms
コード長 1,354 bytes
コンパイル時間 365 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 256,424 KB
最終ジャッジ日時 2024-11-25 03:42:27
合計ジャッジ時間 40,797 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 34 ms
52,224 KB
testcase_02 AC 54 ms
72,704 KB
testcase_03 AC 37 ms
52,608 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 282 ms
138,880 KB
testcase_06 AC 651 ms
132,480 KB
testcase_07 AC 134 ms
77,744 KB
testcase_08 AC 654 ms
139,188 KB
testcase_09 AC 321 ms
142,316 KB
testcase_10 AC 731 ms
236,656 KB
testcase_11 AC 177 ms
78,928 KB
testcase_12 AC 885 ms
180,784 KB
testcase_13 AC 529 ms
134,160 KB
testcase_14 AC 892 ms
249,548 KB
testcase_15 AC 187 ms
84,088 KB
testcase_16 AC 226 ms
82,408 KB
testcase_17 AC 159 ms
78,760 KB
testcase_18 AC 369 ms
100,436 KB
testcase_19 AC 183 ms
78,836 KB
testcase_20 AC 673 ms
148,908 KB
testcase_21 AC 613 ms
125,216 KB
testcase_22 AC 120 ms
76,624 KB
testcase_23 AC 89 ms
76,248 KB
testcase_24 AC 90 ms
76,804 KB
testcase_25 AC 1,225 ms
252,828 KB
testcase_26 AC 1,298 ms
254,968 KB
testcase_27 AC 1,223 ms
254,900 KB
testcase_28 AC 1,251 ms
254,556 KB
testcase_29 AC 1,320 ms
255,140 KB
testcase_30 AC 1,230 ms
253,352 KB
testcase_31 AC 1,279 ms
254,840 KB
testcase_32 AC 1,215 ms
254,964 KB
testcase_33 AC 1,305 ms
255,352 KB
testcase_34 AC 1,339 ms
255,440 KB
testcase_35 AC 1,298 ms
250,888 KB
testcase_36 AC 1,237 ms
254,892 KB
testcase_37 AC 1,303 ms
255,612 KB
testcase_38 AC 1,310 ms
255,584 KB
testcase_39 AC 1,235 ms
253,424 KB
testcase_40 AC 1,248 ms
256,196 KB
testcase_41 AC 1,259 ms
254,296 KB
testcase_42 AC 1,248 ms
255,472 KB
testcase_43 AC 1,242 ms
255,424 KB
testcase_44 AC 1,256 ms
254,652 KB
testcase_45 AC 834 ms
204,904 KB
testcase_46 AC 440 ms
252,108 KB
testcase_47 AC 437 ms
251,340 KB
testcase_48 AC 499 ms
250,216 KB
testcase_49 AC 962 ms
255,804 KB
testcase_50 AC 1,060 ms
254,692 KB
testcase_51 AC 1,004 ms
256,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

mod=998244353

S2=[]
T2=[]

for s in S:
    S2.append(ord(s)-97)

for t in T:
    T2.append(ord(t)-97)

A=list(map(int,input().split()))
SUM=sum(A)

INV=pow(SUM,mod-2,mod)

DP=[[0]*(K+1) for i in range(K+1)]
DP[0][0]=1
for tt in range(K):
    NDP=[[0]*(K+1) for i in range(K+1)]

    for i in range(tt+1):
        for j in range(tt+1):
            if abs(i-j)==L:
                NDP[i][j]+=DP[i][j]
                if i<j:
                    break
                continue
            if DP[i][j]==0:
                continue
            x=S2[i%len(S2)]
            y=T2[j%len(T2)]

            if x==y:
                NDP[i+1][j+1]+=DP[i][j]*A[x]%mod*INV
                NDP[i][j]+=DP[i][j]*(SUM-A[x])%mod*INV
                NDP[i][j]%=mod
                NDP[i+1][j+1]%=mod
            else:
                NDP[i+1][j]+=DP[i][j]*A[x]%mod*INV
                NDP[i][j+1]+=DP[i][j]*A[y]%mod*INV
                NDP[i][j]+=DP[i][j]*(SUM-A[x]-A[y])%mod*INV
                NDP[i+1][j]%=mod
                NDP[i][j+1]%=mod
                NDP[i][j]%=mod

    DP=NDP

ANS1=0
ANS2=0

for i in range(K+1):
    for j in range(K+1):
        if i-j==L:
            ANS1+=DP[i][j]
        if j-i==L:
            ANS2+=DP[i][j]

print(ANS1%mod,ANS2%mod)
0