結果

問題 No.2669 Generalized Hitting Set
ユーザー 👑 rin204rin204
提出日時 2024-04-01 23:40:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,477 ms / 4,000 ms
コード長 1,193 bytes
コンパイル時間 281 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 216,676 KB
最終ジャッジ日時 2024-04-01 23:41:27
合計ジャッジ時間 38,378 ms
ジャッジサーバーID
(参考情報)
judge10 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,580 KB
testcase_01 AC 40 ms
59,580 KB
testcase_02 AC 51 ms
64,188 KB
testcase_03 AC 103 ms
81,940 KB
testcase_04 AC 95 ms
80,660 KB
testcase_05 AC 92 ms
79,892 KB
testcase_06 AC 121 ms
82,836 KB
testcase_07 AC 65 ms
76,692 KB
testcase_08 AC 71 ms
77,076 KB
testcase_09 AC 99 ms
80,276 KB
testcase_10 AC 82 ms
78,228 KB
testcase_11 AC 76 ms
77,076 KB
testcase_12 AC 121 ms
81,428 KB
testcase_13 AC 3,334 ms
206,768 KB
testcase_14 AC 425 ms
92,080 KB
testcase_15 AC 59 ms
68,500 KB
testcase_16 AC 149 ms
79,920 KB
testcase_17 AC 418 ms
92,080 KB
testcase_18 AC 61 ms
66,296 KB
testcase_19 AC 100 ms
74,612 KB
testcase_20 AC 54 ms
66,296 KB
testcase_21 AC 143 ms
79,792 KB
testcase_22 AC 78 ms
71,576 KB
testcase_23 AC 192 ms
84,632 KB
testcase_24 AC 140 ms
82,452 KB
testcase_25 AC 244 ms
87,320 KB
testcase_26 AC 3,224 ms
208,792 KB
testcase_27 AC 140 ms
81,176 KB
testcase_28 AC 3,472 ms
216,416 KB
testcase_29 AC 3,477 ms
216,676 KB
testcase_30 AC 3,360 ms
216,556 KB
testcase_31 AC 3,365 ms
216,564 KB
testcase_32 AC 3,282 ms
216,552 KB
testcase_33 AC 207 ms
84,760 KB
testcase_34 AC 155 ms
84,244 KB
testcase_35 AC 877 ms
114,840 KB
testcase_36 AC 39 ms
59,580 KB
testcase_37 AC 238 ms
83,888 KB
testcase_38 AC 67 ms
68,992 KB
testcase_39 AC 3,371 ms
216,648 KB
testcase_40 AC 3,370 ms
216,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline

n, m, k = map(int, input().split())

PC = [0] * (1 << 12)
for i in range(1, 1 << 12):
    p = i & -i
    PC[i] = PC[i ^ p] + 1

dp = [0] * (1 << n)
for _ in range(m):
    S = int(input(), 2)
    dp[S] += 1


for i in range(n):
    dbit = 1 << i
    for s in range(0, 1 << n, 2 * dbit):
        for j in range(s, s + dbit):
            dp[j] += dp[dbit + j]


nCk = [[0] * (n + 1) for _ in range(n + 1)]
nCk[0][0] = 1
for i in range(1, n + 1):
    nCk[i][0] = 1
    for j in range(1, i + 1):
        nCk[i][j] = nCk[i - 1][j - 1] + nCk[i - 1][j]

C = [0] * (n + 1)
C[k] = 1
for i in range(k + 1, n + 1):
    C[i] = 1
    for j in range(i):
        C[i] -= C[j] * nCk[i][j]


for bit in range(1 << n):
    p = PC[bit >> 12] + PC[bit & 4095]
    dp[bit] *= C[p]

for i in range(n):
    dbit = 1 << i
    for s in range(0, 1 << n, 2 * dbit):
        for j in range(s, s + dbit):
            dp[dbit + j] += dp[j]


ans = [n] * m
for bit in range(1 << n):
    c = dp[bit] - 1
    if c >= 0:
        p = PC[bit >> 12] + PC[bit & 4095]
        ans[c] = min(ans[c], p)

for i in range(m - 2, -1, -1):
    ans[i] = min(ans[i], ans[i + 1])

print(*ans, sep="\n")
0