結果

問題 No.2669 Generalized Hitting Set
ユーザー 👑 rin204rin204
提出日時 2024-04-01 23:31:06
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,124 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 348,800 KB
最終ジャッジ日時 2024-09-30 22:50:23
合計ジャッジ時間 38,003 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 39 ms
52,736 KB
testcase_02 AC 52 ms
63,488 KB
testcase_03 AC 102 ms
82,088 KB
testcase_04 AC 96 ms
80,896 KB
testcase_05 AC 95 ms
80,428 KB
testcase_06 AC 118 ms
83,048 KB
testcase_07 AC 65 ms
76,544 KB
testcase_08 AC 73 ms
77,536 KB
testcase_09 AC 100 ms
80,604 KB
testcase_10 AC 81 ms
78,720 KB
testcase_11 AC 76 ms
77,716 KB
testcase_12 AC 123 ms
81,792 KB
testcase_13 MLE -
testcase_14 AC 426 ms
108,672 KB
testcase_15 AC 62 ms
67,072 KB
testcase_16 AC 152 ms
84,480 KB
testcase_17 AC 429 ms
109,056 KB
testcase_18 AC 59 ms
66,304 KB
testcase_19 AC 104 ms
76,928 KB
testcase_20 AC 58 ms
66,176 KB
testcase_21 AC 149 ms
84,224 KB
testcase_22 AC 78 ms
71,168 KB
testcase_23 AC 213 ms
86,016 KB
testcase_24 AC 144 ms
82,816 KB
testcase_25 AC 253 ms
91,904 KB
testcase_26 MLE -
testcase_27 AC 145 ms
82,688 KB
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 AC 211 ms
87,168 KB
testcase_34 AC 156 ms
84,692 KB
testcase_35 AC 937 ms
147,712 KB
testcase_36 AC 39 ms
52,096 KB
testcase_37 AC 243 ms
92,288 KB
testcase_38 AC 70 ms
68,736 KB
testcase_39 MLE -
testcase_40 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.readline


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

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

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]


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

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 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]

for bit, p in enumerate(PC):
    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 = [1 << 30] * m
for bit in range(1 << n):
    c = dp[bit] - 1
    if c >= 0:
        ans[c] = min(ans[c], PC[bit])

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

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