結果

問題 No.2669 Generalized Hitting Set
ユーザー 👑 rin204rin204
提出日時 2024-04-01 23:18:16
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 1,129 bytes
コンパイル時間 455 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 348,672 KB
最終ジャッジ日時 2024-09-30 22:45:20
合計ジャッジ時間 43,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 49 ms
62,464 KB
testcase_03 AC 104 ms
82,304 KB
testcase_04 AC 95 ms
80,512 KB
testcase_05 AC 92 ms
80,128 KB
testcase_06 AC 114 ms
83,328 KB
testcase_07 AC 69 ms
77,184 KB
testcase_08 AC 76 ms
77,568 KB
testcase_09 AC 100 ms
80,384 KB
testcase_10 AC 80 ms
78,208 KB
testcase_11 AC 77 ms
77,824 KB
testcase_12 AC 116 ms
81,920 KB
testcase_13 MLE -
testcase_14 AC 465 ms
108,800 KB
testcase_15 AC 60 ms
66,560 KB
testcase_16 AC 159 ms
84,480 KB
testcase_17 AC 468 ms
108,800 KB
testcase_18 AC 56 ms
65,792 KB
testcase_19 AC 108 ms
80,128 KB
testcase_20 AC 56 ms
65,024 KB
testcase_21 AC 157 ms
84,096 KB
testcase_22 AC 80 ms
73,088 KB
testcase_23 AC 182 ms
85,888 KB
testcase_24 AC 132 ms
82,560 KB
testcase_25 AC 251 ms
92,032 KB
testcase_26 MLE -
testcase_27 AC 155 ms
82,432 KB
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 AC 200 ms
87,296 KB
testcase_34 AC 151 ms
84,224 KB
testcase_35 AC 1,006 ms
147,840 KB
testcase_36 AC 36 ms
52,096 KB
testcase_37 AC 259 ms
92,544 KB
testcase_38 AC 68 ms
68,992 KB
testcase_39 TLE -
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(dbit):
            dp[s + j] += dp[s + dbit + j]

for bit in range(1 << n):
    dp[bit] *= C[PC[bit]]

for i in range(n):
    dbit = 1 << i
    for s in range(0, 1 << n, 2 * dbit):
        for j in range(dbit):
            dp[s + dbit + j] += dp[s + 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