結果

問題 No.2711 Connecting Lights
ユーザー ThetaTheta
提出日時 2024-04-10 16:44:02
言語 PyPy3
(7.3.15)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 948 bytes
コンパイル時間 836 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 153,676 KB
最終ジャッジ日時 2024-10-02 19:10:39
合計ジャッジ時間 44,053 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,548 KB
testcase_01 AC 40 ms
53,280 KB
testcase_02 AC 56 ms
64,924 KB
testcase_03 AC 39 ms
52,960 KB
testcase_04 AC 39 ms
53,348 KB
testcase_05 AC 117 ms
82,088 KB
testcase_06 AC 81 ms
76,312 KB
testcase_07 AC 84 ms
77,712 KB
testcase_08 AC 131 ms
80,052 KB
testcase_09 AC 2,927 ms
121,544 KB
testcase_10 AC 2,337 ms
112,256 KB
testcase_11 AC 4,145 ms
141,212 KB
testcase_12 AC 1,097 ms
105,080 KB
testcase_13 AC 1,299 ms
111,288 KB
testcase_14 AC 164 ms
81,984 KB
testcase_15 AC 692 ms
94,016 KB
testcase_16 AC 118 ms
82,184 KB
testcase_17 AC 130 ms
83,236 KB
testcase_18 AC 209 ms
85,168 KB
testcase_19 AC 3,294 ms
127,564 KB
testcase_20 AC 1,359 ms
112,796 KB
testcase_21 AC 123 ms
82,548 KB
testcase_22 AC 86 ms
77,524 KB
testcase_23 AC 97 ms
80,192 KB
testcase_24 AC 1,882 ms
104,984 KB
testcase_25 AC 2,263 ms
110,884 KB
testcase_26 TLE -
testcase_27 AC 4,962 ms
153,552 KB
testcase_28 AC 4,951 ms
153,676 KB
testcase_29 AC 4,946 ms
153,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, M, K = map(int, input().split())
    MOD = 998244353
    if M == 1:
        print(pow(2, N, MOD))
        return

    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