結果
問題 | No.2711 Connecting Lights |
ユーザー | startcpp |
提出日時 | 2024-03-31 13:42:32 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 31 ms / 5,000 ms |
コード長 | 884 bytes |
コンパイル時間 | 1,163 ms |
コンパイル使用メモリ | 92,036 KB |
実行使用メモリ | 28,564 KB |
最終ジャッジ日時 | 2024-09-30 18:16:00 |
合計ジャッジ時間 | 2,492 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <functional> #include <vector> #include <stack> #include <queue> #include <set> #include <map> #include <tuple> #include <cstdio> #include <cmath> #include <cassert> #include <atcoder/modint> #define rep(i, n) for(i = 0; i < n; i++) #define int long long using namespace std; using namespace atcoder; using mint = modint998244353; int n, m, K; mint dp[200001][1 << 5]; int bitCnt[1 << 5]; signed main() { int i, j, k; cin >> n >> m >> K; rep(i, 32) { rep(j, 5) bitCnt[i] += (i >> j) % 2; if (i < (1LL << n)) dp[1][i] = 1; } for (i = 1; i < m; i++) { rep(j, (1LL << n)) { if (dp[i][j] == 0) continue; rep(k, (1LL << n)) { if (bitCnt[j & k] < K) continue; dp[i + 1][k] += dp[i][j]; } } } mint ans = 0; rep(i, (1LL << n)) ans += dp[m][i]; cout << ans.val() << endl; return 0; }