結果

問題 No.2711 Connecting Lights
ユーザー prd_xxxprd_xxx
提出日時 2024-03-31 14:27:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 822 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 76,040 KB
最終ジャッジ日時 2024-09-30 19:32:31
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,860 KB
testcase_01 AC 36 ms
52,744 KB
testcase_02 AC 40 ms
61,492 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 52 ms
68,844 KB
testcase_06 AC 49 ms
64,864 KB
testcase_07 AC 51 ms
67,072 KB
testcase_08 AC 56 ms
68,108 KB
testcase_09 AC 227 ms
75,836 KB
testcase_10 AC 55 ms
69,776 KB
testcase_11 AC 79 ms
75,868 KB
testcase_12 AC 106 ms
76,040 KB
testcase_13 AC 65 ms
74,012 KB
testcase_14 AC 48 ms
66,644 KB
testcase_15 AC 89 ms
74,164 KB
testcase_16 AC 53 ms
69,556 KB
testcase_17 AC 53 ms
70,396 KB
testcase_18 AC 58 ms
71,708 KB
testcase_19 AC 55 ms
71,820 KB
testcase_20 AC 118 ms
76,000 KB
testcase_21 AC 50 ms
69,956 KB
testcase_22 AC 47 ms
66,668 KB
testcase_23 AC 49 ms
69,680 KB
testcase_24 AC 118 ms
75,852 KB
testcase_25 AC 174 ms
75,904 KB
testcase_26 AC 321 ms
76,036 KB
testcase_27 AC 145 ms
75,824 KB
testcase_28 AC 319 ms
75,988 KB
testcase_29 AC 60 ms
74,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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