結果

問題 No.2159 Filling 4x4 array
ユーザー suisensuisen
提出日時 2022-12-22 22:04:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,102 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 91,232 KB
実行使用メモリ 15,652 KB
最終ジャッジ日時 2024-11-18 03:31:09
合計ジャッジ時間 129,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
15,520 KB
testcase_01 AC 2 ms
15,392 KB
testcase_02 AC 3 ms
13,636 KB
testcase_03 AC 5 ms
13,640 KB
testcase_04 TLE -
testcase_05 AC 5 ms
13,636 KB
testcase_06 AC 14 ms
15,392 KB
testcase_07 AC 2 ms
13,640 KB
testcase_08 AC 18 ms
13,636 KB
testcase_09 AC 4 ms
15,524 KB
testcase_10 AC 6 ms
13,636 KB
testcase_11 AC 9 ms
15,524 KB
testcase_12 AC 5 ms
15,524 KB
testcase_13 AC 14 ms
13,640 KB
testcase_14 AC 22 ms
15,400 KB
testcase_15 AC 10 ms
15,648 KB
testcase_16 AC 5 ms
13,644 KB
testcase_17 AC 7 ms
15,648 KB
testcase_18 AC 7 ms
15,396 KB
testcase_19 AC 11 ms
15,524 KB
testcase_20 AC 3 ms
15,652 KB
testcase_21 AC 31 ms
15,648 KB
testcase_22 AC 3 ms
13,640 KB
testcase_23 AC 13 ms
6,816 KB
testcase_24 AC 9 ms
6,820 KB
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 AC 121 ms
6,820 KB
testcase_46 AC 4 ms
6,820 KB
testcase_47 AC 285 ms
6,816 KB
testcase_48 AC 4 ms
6,816 KB
testcase_49 AC 326 ms
13,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <array>
#include <iostream>
#include <map>

#include <atcoder/modint>

using mint = atcoder::modint998244353;

constexpr int L = 30;
constexpr int N = 4;

int main() {
    std::array<int, N> r, c;
    for (auto&& e : r) std::cin >> e, e -= 4;
    for (auto&& e : c) std::cin >> e, e -= 4;

    using key = std::pair<std::array<int, N>, std::array<int, N>>;
    std::array<std::map<key, mint>, L + 1> dp{};
    dp[0][{ r, c }] = 1;
    for (int i = 0; i < L; ++i) {
        for (const auto& [k, v] : dp[i]) {
            for (int s = 0; s < 1 << ((N - 1) * (N - 1)); ++s) {
                auto [r, c] = k;
                std::array<std::array<int, N>, N> d;
                for (int a = 0; a < N - 1; ++a) {
                    for (int b = 0; b < N - 1; ++b) {
                        int bit = (s >> (a * (N - 1) + b)) & 1;
                        d[a][b] = bit;
                        r[a] -= bit, c[b] -= bit;
                    }
                }
                for (int a = 0; a < N - 1; ++a) {
                    const int b = N - 1;
                    int bit = r[a] & 1;
                    d[a][b] = bit;
                    r[a] -= bit, c[b] -= bit;
                }
                for (int b = 0; b < N - 1; ++b) {
                    const int a = N - 1;
                    int bit = c[b] & 1;
                    d[a][b] = bit;
                    r[a] -= bit, c[b] -= bit;
                }
                {
                    int bit = r[N - 1] & 1;
                    d[N - 1][N - 1] = bit;
                    r[N - 1] -= bit, c[N - 1] -= bit;
                }
                bool ok = (c[N - 1] & 1) == 0;
                for (int a = 0; a < N; ++a) {
                    ok &= r[a] >= 0;
                    r[a] >>= 1;
                }
                for (int b = 0; b < N; ++b) {
                    ok &= c[b] >= 0;
                    c[b] >>= 1;
                }
                if (ok) {
                    dp[i + 1][{ r, c }] += v;
                }
            }
        }
    }

    std::cout << dp[L][key{}].val() << std::endl;

    return 0;
}
0