結果

問題 No.2964 Obstruction Bingo
ユーザー t98slidert98slider
提出日時 2024-11-16 16:20:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 786 ms / 2,468 ms
コード長 3,648 bytes
コンパイル時間 2,372 ms
コンパイル使用メモリ 208,372 KB
実行使用メモリ 5,760 KB
最終ジャッジ日時 2024-11-16 16:21:19
合計ジャッジ時間 24,419 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 52 ms
5,248 KB
testcase_06 AC 373 ms
5,248 KB
testcase_07 AC 40 ms
5,248 KB
testcase_08 AC 321 ms
5,248 KB
testcase_09 AC 105 ms
5,248 KB
testcase_10 AC 370 ms
5,504 KB
testcase_11 AC 104 ms
5,248 KB
testcase_12 AC 552 ms
5,248 KB
testcase_13 AC 173 ms
5,248 KB
testcase_14 AC 216 ms
5,632 KB
testcase_15 AC 38 ms
5,248 KB
testcase_16 AC 109 ms
5,248 KB
testcase_17 AC 75 ms
5,248 KB
testcase_18 AC 148 ms
5,248 KB
testcase_19 AC 103 ms
5,248 KB
testcase_20 AC 353 ms
5,248 KB
testcase_21 AC 429 ms
5,248 KB
testcase_22 AC 54 ms
5,248 KB
testcase_23 AC 20 ms
5,248 KB
testcase_24 AC 9 ms
5,248 KB
testcase_25 AC 771 ms
5,504 KB
testcase_26 AC 759 ms
5,504 KB
testcase_27 AC 755 ms
5,504 KB
testcase_28 AC 745 ms
5,632 KB
testcase_29 AC 735 ms
5,632 KB
testcase_30 AC 746 ms
5,632 KB
testcase_31 AC 725 ms
5,632 KB
testcase_32 AC 739 ms
5,760 KB
testcase_33 AC 747 ms
5,760 KB
testcase_34 AC 750 ms
5,632 KB
testcase_35 AC 769 ms
5,632 KB
testcase_36 AC 745 ms
5,760 KB
testcase_37 AC 760 ms
5,632 KB
testcase_38 AC 778 ms
5,632 KB
testcase_39 AC 734 ms
5,632 KB
testcase_40 AC 745 ms
5,632 KB
testcase_41 AC 741 ms
5,632 KB
testcase_42 AC 759 ms
5,760 KB
testcase_43 AC 751 ms
5,504 KB
testcase_44 AC 772 ms
5,632 KB
testcase_45 AC 178 ms
5,376 KB
testcase_46 AC 35 ms
5,504 KB
testcase_47 AC 48 ms
5,632 KB
testcase_48 AC 42 ms
5,504 KB
testcase_49 AC 263 ms
5,632 KB
testcase_50 AC 470 ms
5,760 KB
testcase_51 AC 786 ms
5,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<const unsigned int MOD> struct prime_modint {
    using mint = prime_modint;
    unsigned int v;
    prime_modint() : v(0) {}
    prime_modint(unsigned int a) { a %= MOD; v = a; }
    prime_modint(unsigned long long a) { a %= MOD; v = a; }
    prime_modint(int a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    prime_modint(long long a) { a %= (int)(MOD); if(a < 0)a += MOD; v = a; }
    static constexpr int mod() { return MOD; }
    mint& operator++() {v++; if(v == MOD)v = 0; return *this;}
    mint& operator--() {if(v == 0)v = MOD; v--; return *this;}
    mint operator++(int) { mint result = *this; ++*this; return result; }
    mint operator--(int) { mint result = *this; --*this; return result; }
    mint& operator+=(const mint& rhs) { v += rhs.v; if(v >= MOD) v -= MOD; return *this; }
    mint& operator-=(const mint& rhs) { if(v < rhs.v) v += MOD; v -= rhs.v; return *this; }
    mint& operator*=(const mint& rhs) {
        v = (unsigned int)((unsigned long long)(v) * rhs.v % MOD);
        return *this;
    }
    mint& operator/=(const mint& rhs) { return *this = *this * rhs.inv(); }
    mint operator+() const { return *this; }
    mint operator-() const { return mint() - *this; }
    mint pow(long long n) const {
        assert(0 <= n);
        mint r = 1, x = *this;
        while (n) {
            if (n & 1) r *= x;
            x *= x;
            n >>= 1;
        }
        return r;
    }
    mint inv() const { assert(v); return pow(MOD - 2); }
    friend mint operator+(const mint& lhs, const mint& rhs) { return mint(lhs) += rhs; }
    friend mint operator-(const mint& lhs, const mint& rhs) { return mint(lhs) -= rhs; }
    friend mint operator*(const mint& lhs, const mint& rhs) { return mint(lhs) *= rhs; }
    friend mint operator/(const mint& lhs, const mint& rhs) { return mint(lhs) /= rhs; }
    friend bool operator==(const mint& lhs, const mint& rhs) { return (lhs.v == rhs.v); }
    friend bool operator!=(const mint& lhs, const mint& rhs) { return (lhs.v != rhs.v); }
    friend std::ostream& operator << (std::ostream &os, const mint& rhs) noexcept { return os << rhs.v; }
};
//using mint = prime_modint<1000000007>;
using mint = prime_modint<998244353>;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int l, k;
    cin >> l >> k;
    string s, t;
    cin >> s >> t;
    vector<int> a(26);
    for(auto &&v : a) cin >> v;
    int tot = accumulate(a.begin(), a.end(), 0);
    vector<mint> coef(26);
    for(int i = 0; i < 26; i++){
        coef[i] = mint(a[i]) / tot;
    }
    mint A, B;
    vector dp(1, vector<mint>(1));
    dp[0][0] = 1;
    for(int i = 0; i < k; i++){
        vector ndp(i + 2, vector<mint>(i + 2));
        for(int j = 0; j <= i; j++){
            int ns = s[j % l] - 'a';
            for(int p = max(0, j - l + 1); p <= i && p < j + l; p++){
                if(dp[j][p] == 0) continue;
                int nt = t[p % l] - 'a';
                for(int n = 0; n < 26; n++){
                    if(coef[n] == 0) continue;
                    int nj = j, np = p;
                    if (n == ns) nj++;
                    if (n == nt) np++;
                    if(nj - np >= l){
                        A += coef[n] * dp[j][p];
                        continue;
                    }
                    if(np - nj >= l){
                        B += coef[n] * dp[j][p];
                        continue;
                    }
                    ndp[nj][np] += coef[n] * dp[j][p];
                }
            }
        }
        swap(dp, ndp);
    }
    cout << A << ' ' << B << '\n';
}
0