結果

問題 No.2164 Equal Balls
ユーザー trineutrontrineutron
提出日時 2022-12-15 12:14:13
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,206 bytes
コンパイル時間 3,243 ms
コンパイル使用メモリ 254,504 KB
実行使用メモリ 13,640 KB
最終ジャッジ日時 2024-11-14 02:31:00
合計ジャッジ時間 212,827 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
10,528 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 WA -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 WA -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 WA -
testcase_32 TLE -
testcase_33 WA -
testcase_34 TLE -
testcase_35 WA -
testcase_36 TLE -
testcase_37 WA -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#include <atcoder/modint>

using namespace std;
using namespace atcoder;

using mint = modint998244353;

int main() {
    int n, m;
    cin >> n >> m;
    vector<int> a(n), b(n);
    for (auto &&x : a) {
        cin >> x;
    }
    for (auto &&x : b) {
        cin >> x;
    }

    int offset = 300;
    vector<vector<mint>> count(m, vector<mint>(2 * offset + 1, 1));
    for (int i = 0; i < n; i++) {
        for (int j = -offset; j <= offset; j++) {
            count.at(i % m).at(j + offset) *=
                max(-1, min({a.at(i), b.at(i), j + a.at(i), b.at(i) - j})) + 1;
        }
    }

    int offset2 = (m + 1) / 2 * 300;
    vector<mint> ans(2 * offset2 + 1);
    ans.at(offset2) = 1;
    for (int i = 0; i < m; i++) {
        vector<mint> ans_new(2 * offset2 + 1);
        for (int j = 0; j <= 2 * offset2; j++) {
            for (int k = -offset; k <= offset; k++) {
                int j_next = j + k;
                if (j_next < 0 or 2 * offset2 < j_next) continue;
                ans_new.at(j_next) += ans.at(j) * count.at(i).at(k + offset);
            }
        }
        ans = move(ans_new);
    }

    cout << ans.at(offset2).val() << endl;

    return 0;
}
0