結果

問題 No.2711 Connecting Lights
ユーザー namahamu0909namahamu0909
提出日時 2024-11-01 21:35:35
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 1,107 bytes
コンパイル時間 6,199 ms
コンパイル使用メモリ 336,016 KB
実行使用メモリ 8,620 KB
最終ジャッジ日時 2024-11-01 21:35:45
合計ジャッジ時間 8,130 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 4 ms
6,820 KB
testcase_09 AC 80 ms
6,816 KB
testcase_10 AC 50 ms
6,820 KB
testcase_11 AC 86 ms
7,576 KB
testcase_12 AC 24 ms
6,820 KB
testcase_13 AC 26 ms
6,820 KB
testcase_14 AC 4 ms
6,820 KB
testcase_15 AC 17 ms
6,816 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 3 ms
6,820 KB
testcase_18 AC 5 ms
6,816 KB
testcase_19 AC 69 ms
6,820 KB
testcase_20 AC 29 ms
6,820 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 47 ms
6,816 KB
testcase_25 AC 62 ms
6,820 KB
testcase_26 AC 134 ms
8,576 KB
testcase_27 AC 110 ms
8,620 KB
testcase_28 AC 135 ms
8,568 KB
testcase_29 AC 102 ms
8,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
const ll INF=9e18;

int main() {
    ll N,M,K;
    cin>>N>>M>>K;
    ll dp[(1<<N)][M];
    for (ll a = 0; a < (1<<N); a++){
        for (ll b = 0; b < M; b++){
            dp[a][b]=0;
        }
    }
    for (ll a = 0; a < (1<<N); a++){
        dp[a][0]=1;
    }
    
    for (ll a = 1; a < M; a++){
        for (ll b = 0; b < (1<<N); b++){
            for (ll c = 0; c < (1<<N); c++){
                bitset<5>mae(b);
                bitset<5>usiro(c);
                //cout<<b<<' '<<c<<endl;
                //cout<<"bit"<<(mae&usiro)<<endl;
                bitset<5>kotae=mae&usiro;
                ll count=kotae.count();
                if(count>=K){
                    //cout<<"haitta"<<endl;
                    dp[b][a]+=dp[c][a-1];
                    dp[b][a]%=998244353;
                }
            }
        }
    }
    ll hai=0;
    for (ll a = 0; a < (1<<N); a++){
        hai+=dp[a][M-1];
        hai%=998244353;
    }
    cout<<hai<<endl;
}
0