結果

問題 No.2711 Connecting Lights
ユーザー navel_tosnavel_tos
提出日時 2024-03-31 16:51:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 625 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 82,480 KB
最終ジャッジ日時 2024-09-30 21:07:16
合計ジャッジ時間 3,556 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,804 KB
testcase_01 AC 46 ms
53,964 KB
testcase_02 AC 50 ms
60,852 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 55 ms
64,496 KB
testcase_06 AC 49 ms
60,880 KB
testcase_07 AC 51 ms
60,448 KB
testcase_08 AC 52 ms
62,368 KB
testcase_09 AC 165 ms
79,352 KB
testcase_10 AC 49 ms
62,984 KB
testcase_11 AC 59 ms
70,432 KB
testcase_12 AC 65 ms
69,856 KB
testcase_13 AC 59 ms
68,428 KB
testcase_14 AC 48 ms
61,200 KB
testcase_15 AC 70 ms
68,276 KB
testcase_16 AC 53 ms
65,184 KB
testcase_17 AC 55 ms
65,976 KB
testcase_18 AC 57 ms
65,508 KB
testcase_19 AC 50 ms
65,640 KB
testcase_20 AC 72 ms
71,588 KB
testcase_21 AC 56 ms
63,964 KB
testcase_22 AC 52 ms
60,980 KB
testcase_23 AC 50 ms
62,284 KB
testcase_24 AC 91 ms
73,580 KB
testcase_25 AC 139 ms
78,536 KB
testcase_26 AC 258 ms
82,424 KB
testcase_27 AC 95 ms
82,332 KB
testcase_28 AC 243 ms
82,480 KB
testcase_29 AC 51 ms
67,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#MMA Contest 018 F

N, M, K = map(int, input().split())
MOD = 998244353

#遷移先を前計算
sub = [[] for _ in range(1 << N)]
has_bit = lambda S, x: S >> x & 1
L = [S for S in range(1 << N) if S.bit_count() >= K]
for S in L:
    for T in L:
        if sum(has_bit(S, i) & has_bit(T, i) for i in range(N)) >= K:
            sub[S].append(T)

#DP[i][S]: i列目を決める直前であって、点灯状況がS
DP = [[0] * (1 << N) for _ in range(M + 1)]
DP[0][-1] = 1
for i in range(M):
    for S in L:
        for T in sub[S]:
            DP[i + 1][T] += DP[i][S]
            DP[i + 1][T] %= MOD
print(sum(DP[-1]) % MOD)
0