結果

問題 No.2711 Connecting Lights
ユーザー ThetaTheta
提出日時 2024-04-10 16:41:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 887 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 154,092 KB
最終ジャッジ日時 2024-10-02 19:07:12
合計ジャッジ時間 40,792 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,556 KB
testcase_01 AC 37 ms
53,424 KB
testcase_02 AC 51 ms
64,560 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 110 ms
82,020 KB
testcase_06 AC 80 ms
76,584 KB
testcase_07 AC 77 ms
77,764 KB
testcase_08 AC 122 ms
79,920 KB
testcase_09 AC 2,669 ms
121,472 KB
testcase_10 AC 2,119 ms
111,968 KB
testcase_11 AC 3,748 ms
141,072 KB
testcase_12 AC 1,003 ms
105,508 KB
testcase_13 AC 1,167 ms
111,004 KB
testcase_14 AC 152 ms
82,120 KB
testcase_15 AC 630 ms
94,092 KB
testcase_16 AC 113 ms
82,168 KB
testcase_17 AC 122 ms
83,424 KB
testcase_18 AC 193 ms
85,024 KB
testcase_19 AC 2,997 ms
127,872 KB
testcase_20 AC 1,250 ms
112,744 KB
testcase_21 AC 114 ms
82,524 KB
testcase_22 AC 78 ms
77,620 KB
testcase_23 AC 90 ms
80,356 KB
testcase_24 AC 1,724 ms
105,072 KB
testcase_25 AC 2,060 ms
110,884 KB
testcase_26 AC 4,792 ms
153,644 KB
testcase_27 AC 4,599 ms
153,988 KB
testcase_28 AC 4,639 ms
154,092 KB
testcase_29 AC 4,606 ms
153,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, M, K = map(int, input().split())
    MOD = 998244353
    dp_table = [[[0 for _ in range(N + 1)]
                 for _ in range(2**N)] for _ in range(M)]
    for column in range(M):
        for c_bit in range(2**N):
            if column == 0:
                dp_table[column][c_bit][c_bit.bit_count()] += 1
                continue

            for prev_bit in range(2**N):
                for prev_ctr in range(N + 1):
                    dp_table[column][c_bit][min(prev_ctr, (c_bit & prev_bit).bit_count(
                    ))] += (dp_table[column - 1][prev_bit][prev_ctr])
                    dp_table[column][c_bit][min(
                        prev_ctr, (c_bit & prev_bit).bit_count())] %= MOD
    ans = 0
    for elm in dp_table[-1]:
        for v in elm[K:]:
            ans += v
            ans %= MOD
    print(ans)


if __name__ == "__main__":
    main()
0