結果

問題 No.2964 Obstruction Bingo
ユーザー maeshunmaeshun
提出日時 2024-11-17 16:41:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,057 ms / 2,468 ms
コード長 1,514 bytes
コンパイル時間 4,549 ms
コンパイル使用メモリ 264,344 KB
実行使用メモリ 506,624 KB
最終ジャッジ日時 2024-11-17 16:42:07
合計ジャッジ時間 38,640 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 320 ms
506,488 KB
testcase_01 AC 141 ms
506,560 KB
testcase_02 AC 136 ms
506,512 KB
testcase_03 AC 133 ms
506,524 KB
testcase_04 AC 132 ms
506,484 KB
testcase_05 AC 354 ms
506,572 KB
testcase_06 AC 592 ms
506,496 KB
testcase_07 AC 181 ms
506,496 KB
testcase_08 AC 554 ms
506,540 KB
testcase_09 AC 377 ms
506,624 KB
testcase_10 AC 687 ms
506,580 KB
testcase_11 AC 255 ms
506,524 KB
testcase_12 AC 764 ms
506,368 KB
testcase_13 AC 437 ms
506,496 KB
testcase_14 AC 609 ms
506,624 KB
testcase_15 AC 211 ms
506,528 KB
testcase_16 AC 255 ms
506,496 KB
testcase_17 AC 233 ms
506,624 KB
testcase_18 AC 334 ms
506,556 KB
testcase_19 AC 232 ms
506,496 KB
testcase_20 AC 611 ms
506,612 KB
testcase_21 AC 594 ms
506,572 KB
testcase_22 AC 180 ms
506,624 KB
testcase_23 AC 148 ms
506,496 KB
testcase_24 AC 149 ms
506,480 KB
testcase_25 AC 1,003 ms
506,496 KB
testcase_26 AC 1,036 ms
506,624 KB
testcase_27 AC 1,034 ms
506,496 KB
testcase_28 AC 1,014 ms
506,624 KB
testcase_29 AC 1,019 ms
506,552 KB
testcase_30 AC 1,043 ms
506,500 KB
testcase_31 AC 1,002 ms
506,572 KB
testcase_32 AC 1,022 ms
506,552 KB
testcase_33 AC 1,057 ms
506,500 KB
testcase_34 AC 1,041 ms
506,548 KB
testcase_35 AC 1,007 ms
506,496 KB
testcase_36 AC 1,028 ms
506,616 KB
testcase_37 AC 1,053 ms
506,624 KB
testcase_38 AC 1,027 ms
506,496 KB
testcase_39 AC 1,029 ms
506,624 KB
testcase_40 AC 1,028 ms
506,584 KB
testcase_41 AC 1,010 ms
506,624 KB
testcase_42 AC 1,055 ms
506,484 KB
testcase_43 AC 1,033 ms
506,496 KB
testcase_44 AC 1,037 ms
506,624 KB
testcase_45 AC 563 ms
506,608 KB
testcase_46 AC 495 ms
506,588 KB
testcase_47 AC 489 ms
506,520 KB
testcase_48 AC 503 ms
506,496 KB
testcase_49 AC 654 ms
506,524 KB
testcase_50 AC 851 ms
506,624 KB
testcase_51 AC 973 ms
506,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

mint dp[505][505][505];

int main()
{
    int l, k;
    cin >> l >> k;
    string S, T;
    cin >> S >> T;
    int n = 26;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    int all = accumulate(a.begin(),a.end(),0);
    dp[0][0][0] = 1;
    vector<mint> p(n);
    rep(i,n) p[i] = mint(a[i]) * mint(all).inv();
    rep(i,k) {
        for(int j=0;j<=k;j++)for(int h=0;h<=k;h++) {
            if(abs(j-h)>=l) continue;
            if(dp[i][j][h]==0) continue;
            rep(t,n) {
                if(t==S[j%l]-'a' && t==T[h%l]-'a')  dp[i+1][j+1][h+1] += dp[i][j][h]*p[t];
                else if(t==S[j%l]-'a') dp[i+1][j+1][h] += dp[i][j][h]*p[t];
                else if(t==T[h%l]-'a') dp[i+1][j][h+1] += dp[i][j][h]*p[t];
                else dp[i+1][j][h] += dp[i][j][h]*p[t];
            }
        }
    }
    mint A, B;
    for(int i=1;i<=k;i++) for(int j=0;j<=k;j++) for(int h=0;h<=k;h++) {
        if(j-h==l) A += dp[i][j][h];
        if(h-j==l) B += dp[i][j][h];
    }
    cout << A.val() << " " << B.val() << endl;
    return 0;
}
0