結果

問題 No.2711 Connecting Lights
ユーザー Nzt3Nzt3
提出日時 2024-03-31 14:28:39
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 573 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 202,516 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-09-30 19:34:45
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
void ch(ll &a,ll b){
  a=(a+b)%MOD;
}
int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N,M,K;
  cin>>N>>M>>K;
  vector dp0(1<<N,1ll),dp1(1<<N,0ll);
  for(int i=1;i<M;i++){
    for(int j=0;j<1<<N;j++){
      for(int k=0;k<1<<N;k++){
        if(__builtin_popcount(j&k)>=K){
          ch(dp1[k],dp0[j]);
        }
      }
    }
    for(int j=0;j<1<<N;j++){
      dp0[j]=dp1[j];
      dp1[j]=0;
    }
  }
  ll ans=0;
  for(ll i:dp0)ch(ans,i);
  cout<<ans<<'\n';
}
0