結果

問題 No.2164 Equal Balls
ユーザー KumaTachiRenKumaTachiRen
提出日時 2023-09-22 16:06:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,782 ms / 5,000 ms
コード長 2,020 bytes
コンパイル時間 4,579 ms
コンパイル使用メモリ 270,336 KB
実行使用メモリ 6,972 KB
最終ジャッジ日時 2024-07-08 07:38:40
合計ジャッジ時間 59,011 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 372 ms
5,376 KB
testcase_09 AC 144 ms
5,376 KB
testcase_10 AC 92 ms
5,376 KB
testcase_11 AC 662 ms
5,376 KB
testcase_12 AC 390 ms
5,376 KB
testcase_13 AC 135 ms
5,376 KB
testcase_14 AC 356 ms
5,376 KB
testcase_15 AC 675 ms
5,376 KB
testcase_16 AC 372 ms
5,376 KB
testcase_17 AC 28 ms
5,376 KB
testcase_18 AC 499 ms
5,376 KB
testcase_19 AC 1,597 ms
5,376 KB
testcase_20 AC 431 ms
5,376 KB
testcase_21 AC 21 ms
5,376 KB
testcase_22 AC 11 ms
5,376 KB
testcase_23 AC 386 ms
5,376 KB
testcase_24 AC 1,791 ms
5,560 KB
testcase_25 AC 272 ms
5,376 KB
testcase_26 AC 1,897 ms
5,376 KB
testcase_27 AC 2,116 ms
5,756 KB
testcase_28 AC 2,105 ms
5,732 KB
testcase_29 AC 217 ms
5,376 KB
testcase_30 AC 825 ms
5,376 KB
testcase_31 AC 388 ms
5,376 KB
testcase_32 AC 1,937 ms
5,772 KB
testcase_33 AC 206 ms
5,376 KB
testcase_34 AC 367 ms
5,376 KB
testcase_35 AC 54 ms
5,376 KB
testcase_36 AC 2,232 ms
6,672 KB
testcase_37 AC 454 ms
5,376 KB
testcase_38 AC 2,666 ms
6,840 KB
testcase_39 AC 2,649 ms
6,844 KB
testcase_40 AC 2,624 ms
6,844 KB
testcase_41 AC 2,782 ms
6,848 KB
testcase_42 AC 2,658 ms
6,840 KB
testcase_43 AC 2,654 ms
6,844 KB
testcase_44 AC 2,619 ms
6,848 KB
testcase_45 AC 2,641 ms
6,972 KB
testcase_46 AC 2,619 ms
6,844 KB
testcase_47 AC 2,626 ms
6,716 KB
testcase_48 AC 2,613 ms
6,848 KB
testcase_49 AC 599 ms
5,376 KB
testcase_50 AC 598 ms
5,376 KB
testcase_51 AC 592 ms
5,376 KB
testcase_52 AC 597 ms
5,376 KB
testcase_53 AC 597 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using namespace std;
using namespace atcoder;

struct Fast {
  Fast() {
    std::cin.tie(nullptr);
    ios::sync_with_stdio(false);
    cout << setprecision(10);
  }
} fast;

#define all(a) (a).begin(), (a).end()
#define contains(a, x) ((a).find(x) != (a).end())
#define rep(i, a, b) for (int i = (a); i < (int)(b); i++)
#define rrep(i, a, b) for (int i = (int)(b)-1; i >= (a); i--)
#define writejoin(s, a) rep(_i, 0, (a).size()) cout << (a)[_i] << (_i + 1 < (int)(a).size() ? s : "\n");
#define YN(b) cout << ((b) ? "YES" : "NO") << "\n";
#define Yn(b) cout << ((b) ? "Yes" : "No") << "\n";
#define yn(b) cout << ((b) ? "yes" : "no") << "\n";

template <typename mint>
class Factorial {
 public:
  Factorial(int max) : n(max) {
    f = vector<mint>(n + 1);
    finv = vector<mint>(n + 1);
    f[0] = 1;
    for (int i = 1; i <= n; i++) f[i] = f[i - 1] * i;
    finv[n] = f[n].inv();
    for (int i = n; i > 0; i--) finv[i - 1] = finv[i] * i;
  }
  mint fact(int k) {
    assert(0 <= k && k <= n);
    return f[k];
  }
  mint fact_inv(int k) {
    assert(0 <= k && k <= n);
    return finv[k];
  }
  mint binom(int k, int r) {
    assert(0 <= k && k <= n);
    if (r < 0 || r > k) return 0;
    return f[k] * finv[r] * finv[k - r];
  }
  mint inv(int k) {
    assert(0 < k && k <= n);
    return finv[k] * f[k - 1];
  }

 private:
  int n;
  vector<mint> f, finv;
};

using ll = long long;
using vi = vector<int>;
using vvi = vector<vi>;
using vl = vector<ll>;
using mint = modint998244353;

int main() {
  const int l = 300;
  int n, m;
  cin >> n >> m;

  vi a(n), b(n);
  rep(i, 0, n) cin >> a[i];
  rep(i, 0, n) cin >> b[i];

  Factorial<mint> fact(10000);

  vector<mint> f(m * l + 1);
  f[0] = 1;
  rep(k, 0, m) {
    vector<mint> c(2 * l + 1, 1);
    for (int i = k; i < n; i += m)
      for (int j = -l; j <= l; j++)
        c[j + l] *= fact.binom(a[i] + b[i], j + b[i]);
    f = convolution(f, c);
    f.resize(m * l + 1);
  }
  cout << f[l * m].val() << "\n";
}
0