結果

問題 No.2711 Connecting Lights
ユーザー prd_xxxprd_xxx
提出日時 2024-03-31 14:29:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 5,000 ms
コード長 854 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-09-30 19:35:43
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,384 KB
testcase_01 AC 35 ms
53,288 KB
testcase_02 AC 43 ms
61,000 KB
testcase_03 AC 35 ms
53,824 KB
testcase_04 AC 34 ms
52,120 KB
testcase_05 AC 50 ms
69,088 KB
testcase_06 AC 47 ms
66,020 KB
testcase_07 AC 47 ms
66,092 KB
testcase_08 AC 56 ms
67,992 KB
testcase_09 AC 206 ms
76,048 KB
testcase_10 AC 54 ms
69,716 KB
testcase_11 AC 78 ms
76,288 KB
testcase_12 AC 105 ms
76,156 KB
testcase_13 AC 66 ms
74,620 KB
testcase_14 AC 49 ms
67,528 KB
testcase_15 AC 91 ms
73,972 KB
testcase_16 AC 53 ms
69,368 KB
testcase_17 AC 54 ms
71,448 KB
testcase_18 AC 56 ms
70,768 KB
testcase_19 AC 54 ms
71,212 KB
testcase_20 AC 122 ms
75,904 KB
testcase_21 AC 52 ms
69,476 KB
testcase_22 AC 49 ms
66,660 KB
testcase_23 AC 51 ms
69,940 KB
testcase_24 AC 121 ms
76,136 KB
testcase_25 AC 176 ms
76,080 KB
testcase_26 AC 321 ms
75,984 KB
testcase_27 AC 143 ms
75,968 KB
testcase_28 AC 317 ms
75,880 KB
testcase_29 AC 62 ms
73,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if M==1:
    exit(print(1<<N))

def popcnt(n):
    c = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555)
    c = (c & 0x3333333333333333) + ((c >> 2) & 0x3333333333333333)
    c = (c & 0x0f0f0f0f0f0f0f0f) + ((c >> 4) & 0x0f0f0f0f0f0f0f0f)
    c = (c & 0x00ff00ff00ff00ff) + ((c >> 8) & 0x00ff00ff00ff00ff)
    c = (c & 0x0000ffff0000ffff) + ((c >> 16) & 0x0000ffff0000ffff)
    c = (c & 0x00000000ffffffff) + ((c >> 32) & 0x00000000ffffffff)
    return c

dp = [0] * (1<<N)
for s in range(1<<N):
    if popcnt(s) < K: continue
    dp[s] = 1

for _ in range(M-1):
    ndp = [0] * (1<<N)
    for s in range(1<<N):
        if popcnt(s) < K: continue
        for t in range(1<<N):
            if popcnt(s&t) < K: continue
            ndp[t] = (ndp[t] + dp[s]) % MOD
    dp = ndp
print(sum(dp) % MOD)
0