結果

問題 No.2788 4-33 Hard
ユーザー sho_sho_
提出日時 2024-06-14 23:08:42
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 5,653 bytes
コンパイル時間 6,136 ms
コンパイル使用メモリ 328,576 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-06-14 23:08:51
合計ジャッジ時間 8,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 9 ms
11,008 KB
testcase_01 AC 9 ms
11,136 KB
testcase_02 AC 12 ms
11,148 KB
testcase_03 AC 28 ms
11,136 KB
testcase_04 AC 10 ms
11,136 KB
testcase_05 AC 27 ms
11,096 KB
testcase_06 AC 13 ms
11,136 KB
testcase_07 AC 9 ms
11,216 KB
testcase_08 AC 9 ms
11,008 KB
testcase_09 AC 10 ms
11,028 KB
testcase_10 AC 30 ms
11,008 KB
testcase_11 AC 22 ms
11,036 KB
testcase_12 AC 22 ms
11,136 KB
testcase_13 AC 23 ms
11,264 KB
testcase_14 AC 23 ms
11,124 KB
testcase_15 AC 22 ms
11,112 KB
testcase_16 AC 22 ms
11,136 KB
testcase_17 AC 22 ms
11,176 KB
testcase_18 AC 22 ms
11,008 KB
testcase_19 AC 23 ms
11,200 KB
testcase_20 AC 22 ms
11,180 KB
testcase_21 AC 23 ms
11,008 KB
testcase_22 AC 21 ms
11,132 KB
testcase_23 AC 21 ms
11,136 KB
testcase_24 AC 23 ms
11,116 KB
testcase_25 AC 22 ms
11,136 KB
testcase_26 AC 22 ms
11,264 KB
testcase_27 AC 22 ms
11,032 KB
testcase_28 AC 23 ms
11,136 KB
testcase_29 AC 23 ms
11,188 KB
testcase_30 AC 24 ms
11,136 KB
testcase_31 AC 27 ms
11,028 KB
testcase_32 AC 27 ms
11,036 KB
testcase_33 AC 28 ms
11,136 KB
testcase_34 AC 28 ms
11,136 KB
testcase_35 AC 28 ms
11,136 KB
testcase_36 AC 28 ms
11,264 KB
testcase_37 AC 28 ms
11,136 KB
testcase_38 AC 29 ms
11,148 KB
testcase_39 AC 29 ms
11,128 KB
testcase_40 AC 28 ms
11,136 KB
testcase_41 AC 28 ms
11,124 KB
testcase_42 AC 27 ms
11,128 KB
testcase_43 AC 27 ms
11,136 KB
testcase_44 AC 27 ms
11,188 KB
testcase_45 AC 26 ms
11,116 KB
testcase_46 AC 27 ms
11,136 KB
testcase_47 AC 28 ms
11,092 KB
testcase_48 AC 28 ms
11,120 KB
testcase_49 AC 27 ms
11,136 KB
testcase_50 AC 24 ms
11,136 KB
testcase_51 AC 27 ms
11,136 KB
testcase_52 AC 28 ms
11,000 KB
testcase_53 AC 27 ms
11,136 KB
testcase_54 AC 27 ms
11,136 KB
testcase_55 AC 27 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using ql = queue<ll>;
using sl = set<ll>;
using vl = vector<ll>;
using msl = multiset<ll>;
using Graph = vector<vector<ll>>;
using P = pair<ll, ll>;
template <typename T> inline bool chmax(T &a, T b) {
    return ((a < b) ? (a = b, true) : (false));
}
template <typename T> inline bool chmin(T &a, T b) {
    return ((a > b) ? (a = b, true) : (false));
}
#define YES                                                                    \
    {                                                                          \
        cout << "Yes\n";                                                       \
        exit(0);                                                               \
    }
#define NO                                                                     \
    {                                                                          \
        cout << "No\n";                                                        \
        exit(0);                                                               \
    }
#define rep1(i, n) for(ll i = 1; i <= ((ll)n); ++i)
#define rep(i, n) for(ll i = 0; i < ((ll)n); ++i)
#define ALL(a) (a).begin(), (a).end()
#define rALL(a) (a).rbegin(), (a).rend()
#define INF ((1LL << 62) - (1LL << 31))
ll LCS(string s, string t) {
    ll n = s.size(), m = t.size();
    Graph dp(n, vl(m, 0));
    rep(i, n) {
        rep(j, m) {
            if(i)
                dp[i][j] = max(dp[i][j], dp[i - 1][j]);
            if(j)
                dp[i][j] = max(dp[i][j], dp[i][j - 1]);
            if(s[i] == t[j]) {
                if(i && j)
                    dp[i][j] = max(dp[i][j], dp[i - 1][j - 1] + 1);
                else
                    dp[i][j] = 1;
            }
        }
    }
    rep(i, n) {
        // rep(j,m)cout<<dp[i][j]<<" ";
        // cout<<endl;
    }
    return dp[n - 1][m - 1];
}
template <class Type> size_t LIS(const std::vector<Type> &v) {
    std::vector<Type> dp;

    for(const auto &elem : v) {
        auto it = std::lower_bound(dp.begin(), dp.end(), elem);

        if(it == dp.end()) {
            dp.push_back(elem);
        } else {
            *it = elem;
        }
    }
    return dp.size();
}
template <bool Strict, class Type> size_t LIS(const std::vector<Type> &v) {
    std::vector<Type> dp;

    auto it = dp.begin();

    for(const auto &elem : v) {
        if constexpr(Strict) {
            it = std::lower_bound(dp.begin(), dp.end(), elem);
        } else {
            it = std::upper_bound(dp.begin(), dp.end(), elem);
        }

        if(it == dp.end()) {
            dp.push_back(elem);
        } else {
            *it = elem;
        }
    }

    return dp.size();
}

vector<pair<long long, long long>> prime_factorize(long long N) {
    // 答えを表す可変長配列
    vector<pair<long long, long long>> res;

    // √N まで試し割っていく
    for(long long p = 2; p * p <= N; ++p) {
        // N が p で割り切れないならばスキップ
        if(N % p != 0) {
            continue;
        }

        // N の素因数 p に対する指数を求める
        int e = 0;
        while(N % p == 0) {
            // 指数を 1 増やす
            ++e;

            // N を p で割る
            N /= p;
        }

        // 答えに追加
        res.emplace_back(p, e);
    }

    // 素数が最後に残ることがありうる
    if(N != 1) {
        res.emplace_back(N, 1);
    }
    return res;
}
vector<long long> divisor(long long n) {
    vector<long long> ret;
    for(long long i = 1; i * i <= n; i++) {
        if(n % i == 0) {
            ret.push_back(i);
            if(i * i != n)
                ret.push_back(n / i);
        }
    }
    sort(ret.begin(), ret.end()); // 昇順に並べる
    return ret;
}
template <typename T> void print(T &d) {
    for(auto &i : d)
        cout << i << " ";
    if(d.size())
        cout << endl;
}
vector<ll> dx = {1, 0, -1, 0};
vector<ll> dy = {0, 1, 0, -1};
using mint = modint998244353;
// using mint = modint1000000007;
// using mint = modint;
ll MAX = 1e6;
vector<mint> fac(MAX + 1, 1);
vector<mint> ifac(MAX + 1, 1);
mint binomial(ll n, ll k) {
    if(k < 0 || n < k)
        return 0;
    // return fac[n] * ifac[n - k] * ifac[k];
    mint den = 1;
    mint num = 1;
    rep(i, k) {
        num *= n - i;
        den *= i + 1;
    }
    return num / den;
}
void solve() {
    Graph o(5,vl(34));
    rep(i,5)rep(j,34){
        cin >> o[i][j];
    }

    vector dp(vector(9,vector(5,vector(34,mint(0)))));
    dp[0][0][0]=1;
    rep(i,5)rep(j,34){
        auto prev = dp;
        ll x = o[i][j];
        // if(x)cout << " ! " << i << " " << j << " " << x << endl;
        rep(I,5)rep(J,34)
        rep(k,8)rep1(l,min(8LL,x)){
            ll nk = k + l;
            ll ni = I + l*i;
            ll nj = J + l*j;
            if(nk>8||ni>4||nj>33)continue;
            dp[nk][ni][nj] += binomial(x,l)*prev[k][I][J];
            // if(dp[nk][ni][nj].val()){
            //     cout << nk << " " << ni << " " << nj << " " << dp[nk][ni][nj].val() << endl;
            // }
        }
    }
    mint ans = 0;
    rep(i,5)rep(j,34){
        ll x;
        cin >> x;
        if(j==0){
            ans += dp[8][4-i][33]*x;
        }
    }
    cout << ans.val() << endl;

}

int main() {
    // { // 前処理 MAX=1e6
    //     rep1(i, MAX) fac[i] = i * fac[i - 1];
    //     ifac[MAX] = fac[MAX].inv();
    //     for(ll i = MAX; i >= 1; i--)
    //         ifac[i - 1] = ifac[i] * (i);
    // }
    ll t;
    t = 1;
    // cin >> t;
    rep(_, t) solve();
}
0