結果
問題 | No.2711 Connecting Lights |
ユーザー | nonon |
提出日時 | 2024-03-31 13:44:28 |
言語 | C++17(gcc12) (gcc 12.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 101 ms / 5,000 ms |
コード長 | 630 bytes |
コンパイル時間 | 2,182 ms |
コンパイル使用メモリ | 202,436 KB |
実行使用メモリ | 6,144 KB |
最終ジャッジ日時 | 2024-09-30 18:18:55 |
合計ジャッジ時間 | 3,945 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 27 |
ソースコード
#include<bits/stdc++.h> #include<atcoder/modint> using namespace std; using mint=atcoder::modint998244353; int N,M,K; mint dp[20202][32]; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); cin>>N>>M>>K; if(M==1) { cout<<mint(2).pow(N).val()<<endl; return 0; } dp[0][(1<<N)-1]=1; for(int i=1;i<=M;i++)for(int j=0;j<(1<<N);j++) { for(int k=0;k<(1<<N);k++) { int both=(j&k); if(__builtin_popcount(both)>=K)dp[i][k]+=dp[i-1][j]; } } mint ans=0; for(int j=0;j<(1<<N);j++)ans+=dp[M][j]; cout<<ans.val()<<endl; }