結果
問題 | No.2788 4-33 Hard |
ユーザー | sibasyun |
提出日時 | 2024-06-24 22:29:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 4,126 bytes |
コンパイル時間 | 4,941 ms |
コンパイル使用メモリ | 273,932 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-24 22:29:57 |
合計ジャッジ時間 | 8,017 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
6,812 KB |
testcase_01 | AC | 7 ms
6,940 KB |
testcase_02 | AC | 14 ms
6,940 KB |
testcase_03 | WA | - |
testcase_04 | AC | 11 ms
6,944 KB |
testcase_05 | AC | 38 ms
6,944 KB |
testcase_06 | AC | 12 ms
6,940 KB |
testcase_07 | AC | 8 ms
6,944 KB |
testcase_08 | AC | 11 ms
6,940 KB |
testcase_09 | AC | 11 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 32 ms
6,944 KB |
testcase_12 | AC | 33 ms
6,944 KB |
testcase_13 | AC | 32 ms
6,940 KB |
testcase_14 | AC | 33 ms
6,940 KB |
testcase_15 | AC | 32 ms
6,944 KB |
testcase_16 | AC | 33 ms
6,944 KB |
testcase_17 | AC | 33 ms
6,940 KB |
testcase_18 | AC | 32 ms
6,944 KB |
testcase_19 | AC | 32 ms
6,944 KB |
testcase_20 | AC | 33 ms
6,944 KB |
testcase_21 | AC | 33 ms
6,940 KB |
testcase_22 | AC | 32 ms
6,940 KB |
testcase_23 | AC | 32 ms
6,944 KB |
testcase_24 | AC | 32 ms
6,944 KB |
testcase_25 | AC | 32 ms
6,944 KB |
testcase_26 | AC | 32 ms
6,940 KB |
testcase_27 | AC | 32 ms
6,944 KB |
testcase_28 | AC | 33 ms
6,940 KB |
testcase_29 | AC | 32 ms
6,944 KB |
testcase_30 | AC | 33 ms
6,940 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | AC | 39 ms
6,940 KB |
testcase_35 | AC | 39 ms
6,944 KB |
testcase_36 | AC | 38 ms
6,944 KB |
testcase_37 | AC | 38 ms
6,944 KB |
testcase_38 | AC | 38 ms
6,940 KB |
testcase_39 | AC | 38 ms
6,944 KB |
testcase_40 | AC | 39 ms
6,940 KB |
testcase_41 | AC | 38 ms
6,944 KB |
testcase_42 | AC | 38 ms
6,940 KB |
testcase_43 | AC | 39 ms
6,944 KB |
testcase_44 | AC | 38 ms
6,940 KB |
testcase_45 | AC | 38 ms
6,948 KB |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | AC | 23 ms
6,940 KB |
testcase_50 | AC | 30 ms
6,940 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> #include <algorithm> #include <iostream> #include <iomanip> #include <math.h> #include <random> #include <chrono> #include <cstdint> using namespace std; using namespace atcoder; using mint = modint998244353; // using mint = modint1000000007; using vi = vector<int>; using vvi = vector<vector<int>>; using vl = vector<long long>; using vvl = vector<vector<long long>>; using ll = long long; template <class T> using max_heap = priority_queue<T>; template <class T> using min_heap = priority_queue<T, vector<T>, greater<>>; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rep2(i, f, n) for (int i = (int) f; i < (int)(n); i++) #define repd(i, n, l) for (int i = (int) n; i >= (int) l; i--) #define all(p) p.begin(),p.end() vector<pair<int, int>> dydx{{-1, 0}, {1, 0}, {0, -1 }, {0, 1}}; const ll inf = 1LL << 60; void print(){ putchar(' '); } void print(bool a){ printf("%d", a); } void print(int a){ printf("%d", a); } void print(unsigned a){ printf("%u", a); } void print(long a){ printf("%ld", a); } void print(long long a){ printf("%lld", a); } void print(unsigned long long a){ printf("%llu", a); } void print(char a){ printf("%c", a); } void print(char a[]){ printf("%s", a); } void print(const char a[]){ printf("%s", a); } void print(float a){ printf("%.15f", a); } void print(double a){ printf("%.15f", a); } void print(long double a){ printf("%.15Lf", a); } void print(const string& a){ for(auto&& i : a) print(i); } template<class T> void print(const complex<T>& a){ if(a.real() >= 0) print('+'); print(a.real()); if(a.imag() >= 0) print('+'); print(a.imag()); print('i'); } template<class T> void print(const vector<T>&); template<class T, size_t size> void print(const array<T, size>&); template<class T, class L> void print(const pair<T, L>& p); template<class T, size_t size> void print(const T (&)[size]); template<class T> void print(const vector<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } } template<class T> void print(const deque<T>& a){ if(a.empty()) return; print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } } template<class T, size_t size> void print(const array<T, size>& a){ print(a[0]); for(auto i = a.begin(); ++i != a.end(); ){ putchar(' '); print(*i); } } template<class T, class L> void print(const pair<T, L>& p){ print(p.first); putchar(' '); print(p.second); } template<class T, size_t size> void print(const T (&a)[size]){ print(a[0]); for(auto i = a; ++i != end(a); ){ putchar(' '); print(*i); } } template<class T> void print(const T& a){ cout << a; } mint cmb(ll n, ll k){ ll mod = 998244353; if (k == 0) return mint(1); mint ret = 1; rep(i, k) { ret *= mint(n%mod); n--; } while (k){ ret *= mint(k).inv(); k--; } return ret; } int main() { vector<vector<ll>> S(5, vl(34, 0)), T(5, vl(34, 0)); rep(i, 5) rep(j, 34) cin >> S[i][j]; rep(i, 5) rep(j, 34) cin >> T[i][j]; vector<vector<vector<mint>>> dp(10, vector<vector<mint>>(5, vector<mint>(34, 0))); dp[0][0][0] = 1; rep(i, 5) rep(j, 34){ vector<vector<vector<mint>>> ndp(10, vector<vector<mint>>(5, vector<mint>(34, 0))); ll num = S[i][j]; for (int ini = 0; ini <= 8; ini++){ for (int s1 = 0; s1 <= 4; s1++){ for (int s2 = 0; s2 <= 33; s2++){ rep(k, num+1){ if (ini + k > 8) break; int ns1 = i * k + s1; int ns2 = j * k + s2; if (ns1 <= 4 && ns2 <= 33) ndp[ini + k][ns1][ns2] += dp[ini][s1][s2] * cmb(num, k); } } } } swap(dp, ndp); // if (i == 0 && j == 0) cout << num << ' ' << dp[2][0][0].val() << endl; } rep(i, 5){ for (int s1 = 0; s1 <= 4; s1++){ ll num = T[i][0]; if (i + s1 <= 4) dp[9][s1+i][33] += dp[8][s1][33] * num; } } cout << dp[9][4][33].val() << endl; return 0; }