結果

問題 No.2964 Obstruction Bingo
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2024-11-22 10:34:35
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,302 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 209,668 KB
実行使用メモリ 10,664 KB
最終ジャッジ日時 2024-11-22 10:36:16
合計ジャッジ時間 99,158 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
10,624 KB
testcase_02 AC 16 ms
10,400 KB
testcase_03 AC 2 ms
10,496 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 327 ms
10,496 KB
testcase_06 AC 1,619 ms
10,496 KB
testcase_07 AC 168 ms
10,664 KB
testcase_08 AC 1,440 ms
10,496 KB
testcase_09 AC 566 ms
10,624 KB
testcase_10 AC 1,718 ms
10,496 KB
testcase_11 AC 462 ms
10,496 KB
testcase_12 TLE -
testcase_13 AC 825 ms
10,508 KB
testcase_14 AC 1,198 ms
10,496 KB
testcase_15 AC 173 ms
6,820 KB
testcase_16 AC 494 ms
6,816 KB
testcase_17 AC 349 ms
6,816 KB
testcase_18 AC 689 ms
6,816 KB
testcase_19 AC 470 ms
6,816 KB
testcase_20 AC 1,608 ms
6,820 KB
testcase_21 AC 1,846 ms
5,248 KB
testcase_22 AC 231 ms
5,248 KB
testcase_23 AC 84 ms
5,248 KB
testcase_24 AC 31 ms
5,248 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 999 ms
5,248 KB
testcase_46 AC 361 ms
5,248 KB
testcase_47 AC 362 ms
5,248 KB
testcase_48 AC 1,279 ms
5,248 KB
testcase_49 AC 1,237 ms
5,248 KB
testcase_50 AC 2,090 ms
5,256 KB
testcase_51 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>

using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;

int main(){
    cin.tie(nullptr);
    ios_base::sync_with_stdio(false);

    /*
       dp(i,j,k) = i回目でP_N=j, P_M=k(|k-j|<=L)である確率
    */
    ll L, K, x;
    mint ans1=0, ans2=0, sm=0;
    string S, T;
    cin >> L >> K >> S >> T;
    vector<mint> p(26);
    for (int i=0; i<26; i++){
        cin >> x;
        p[i] = x;
        sm += p[i];
    }
    sm = sm.inv();
    for (int i=0; i<26; i++) p[i] *= sm;

    vector dp(K+1, vector<mint>(K+1));
    dp[0][0] = 1;
    for (int i=0; i<K; i++){
        vector pd(K+1, vector<mint>(K+1));
        for (int j=0; j<=K; j++){
            for (int k=0; k<=K; k++){
                if (abs(j-k)>=L) continue;
                for (int l=0; l<26; l++){
                    bool x = (l == S[j%L]-'a'), y = (l == T[k%L]-'a');
                    if (j+x<=K && k+y<=K) pd[j+x][k+y] += dp[j][k] * p[l];
                }
            }
        }
        swap(dp, pd);
        for (int j=0; j<=K; j++){
            if (j-L>=0){
                ans1 += dp[j][j-L];
                ans2 += dp[j-L][j];
            }
        }
    }
    cout << ans1.val() << " " << ans2.val() << endl;

    return 0;
}
0