結果

問題 No.2711 Connecting Lights
ユーザー 259-Momone259-Momone
提出日時 2024-11-01 20:26:57
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 21 ms / 5,000 ms
コード長 990 bytes
コンパイル時間 3,730 ms
コンパイル使用メモリ 326,320 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-01 20:27:03
合計ジャッジ時間 5,159 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 13 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 3 ms
6,820 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 6 ms
6,816 KB
testcase_25 AC 10 ms
6,820 KB
testcase_26 AC 20 ms
6,820 KB
testcase_27 AC 5 ms
6,820 KB
testcase_28 AC 21 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/modint>
#include <bits/extc++.h>

namespace atcoder {
template <int m>
std::ostream &operator<<(std::ostream &os, static_modint<m> n) {
    return os << n.val();
}
template <int m>
std::istream &operator>>(std::istream &is, static_modint<m> &n) {
    int tmp;
    is >> tmp;
    n = tmp;
    return is;
}
} // namespace atcoder

int main() {
    using namespace std;
    using modint = atcoder::static_modint<998244353>;
    unsigned N, M, K;
    cin >> N >> M >> K;

    vector<modint> dp(1U << N, 1), prev(1U << N);

    vector<pair<unsigned, unsigned>> edges;
    for (unsigned i{}; i < 1U << N; i++)
        for (unsigned j{}; j < 1U << N; j++)
            if (popcount(i & j) >= K)
                edges.emplace_back(i, j);

    for (unsigned i{1}; i < M; i++) {
        swap(dp, prev);
        ranges::fill(dp, 0);
        for (const auto &[from, to] : edges)
            dp[to] += prev[from];
    }
    cout << reduce(cbegin(dp), cend(dp)) << endl;
    return 0;
}
0