結果

問題 No.2669 Generalized Hitting Set
ユーザー suisensuisen
提出日時 2024-01-14 03:39:21
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,538 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 346,464 KB
最終ジャッジ日時 2024-09-28 02:46:46
合計ジャッジ時間 41,537 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 147 ms
189,356 KB
testcase_01 AC 143 ms
189,516 KB
testcase_02 AC 156 ms
194,840 KB
testcase_03 AC 191 ms
210,700 KB
testcase_04 AC 185 ms
210,200 KB
testcase_05 AC 179 ms
209,744 KB
testcase_06 AC 207 ms
211,916 KB
testcase_07 AC 161 ms
205,420 KB
testcase_08 AC 168 ms
208,000 KB
testcase_09 AC 190 ms
210,196 KB
testcase_10 AC 177 ms
208,380 KB
testcase_11 AC 174 ms
207,904 KB
testcase_12 AC 211 ms
211,212 KB
testcase_13 MLE -
testcase_14 AC 510 ms
223,648 KB
testcase_15 AC 165 ms
197,708 KB
testcase_16 AC 251 ms
211,084 KB
testcase_17 AC 511 ms
224,064 KB
testcase_18 AC 159 ms
196,552 KB
testcase_19 AC 200 ms
205,256 KB
testcase_20 AC 159 ms
196,688 KB
testcase_21 AC 245 ms
211,304 KB
testcase_22 AC 179 ms
200,772 KB
testcase_23 AC 276 ms
213,380 KB
testcase_24 AC 225 ms
211,932 KB
testcase_25 AC 335 ms
216,872 KB
testcase_26 MLE -
testcase_27 AC 234 ms
211,216 KB
testcase_28 MLE -
testcase_29 MLE -
testcase_30 MLE -
testcase_31 MLE -
testcase_32 MLE -
testcase_33 AC 288 ms
214,448 KB
testcase_34 AC 243 ms
213,252 KB
testcase_35 AC 986 ms
244,804 KB
testcase_36 AC 145 ms
189,536 KB
testcase_37 AC 338 ms
215,352 KB
testcase_38 AC 173 ms
199,144 KB
testcase_39 MLE -
testcase_40 MLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from time import perf_counter

start = perf_counter()

N_MAX = 24

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

popcnt = [0] * (1 << N_MAX)
for t in range(1, 1 << N_MAX):
    popcnt[t] = 1 + popcnt[t & (t - 1)]

print(perf_counter() - start, file=sys.stderr)

readline = sys.stdin.readline

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

f = [0] * (1 << n)

for i in range(m):
    # reversed, but it's ok
    s = int(readline(), 2)
    f[s] += 1

a = [0] * (n + 1)
for l in range(k, n + 1):
    a[l] = (-1) ** (l - k) * binom[l - 1][l - k]

print(perf_counter() - start, file=sys.stderr)

# supset zeta
b = 1
while b < 1 << n:
    for l in range(0, 1 << n, 2 * b):
        for p in range(l, l + b):
            f[p] += f[p + b]
    b *= 2

print(perf_counter() - start, file=sys.stderr)

for t in range(1 << n):
    f[t] *= a[popcnt[t]]

print(perf_counter() - start, file=sys.stderr)

f.reverse()

# subset zeta
b = 1
while b < 1 << n:
    for l in range(0, 1 << n, 2 * b):
        for p in range(l, l + b):
            f[p] += f[p + b]
    b *= 2

f.reverse()

print(perf_counter() - start, file=sys.stderr)

g = [n + 1] * (m + 1)
for t in range(1 << n):
    g[f[t]] = min(g[f[t]], popcnt[t])

for p in reversed(range(m)):
    g[p] = min(g[p], g[p + 1])

print(perf_counter() - start, file=sys.stderr)

print('\n'.join(map(str, g[1:])))

print(perf_counter() - start, file=sys.stderr)
0