結果

問題 No.1560 majority x majority
ユーザー H3PO4H3PO4
提出日時 2022-11-27 16:27:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,638 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 81,824 KB
最終ジャッジ日時 2024-10-04 05:52:12
合計ジャッジ時間 11,591 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,638 ms
81,824 KB
testcase_01 AC 1,617 ms
81,764 KB
testcase_02 AC 33 ms
53,632 KB
testcase_03 AC 733 ms
80,200 KB
testcase_04 AC 95 ms
78,612 KB
testcase_05 AC 1,328 ms
80,800 KB
testcase_06 AC 151 ms
77,340 KB
testcase_07 AC 78 ms
76,652 KB
testcase_08 AC 601 ms
79,264 KB
testcase_09 AC 262 ms
77,644 KB
testcase_10 AC 42 ms
64,224 KB
testcase_11 AC 87 ms
77,088 KB
testcase_12 AC 63 ms
71,916 KB
testcase_13 AC 101 ms
77,160 KB
testcase_14 AC 63 ms
76,496 KB
testcase_15 AC 214 ms
77,608 KB
testcase_16 AC 54 ms
70,740 KB
testcase_17 AC 633 ms
78,792 KB
testcase_18 AC 160 ms
77,456 KB
testcase_19 AC 41 ms
63,104 KB
testcase_20 AC 54 ms
69,356 KB
testcase_21 AC 57 ms
73,472 KB
testcase_22 AC 279 ms
77,840 KB
testcase_23 AC 48 ms
69,268 KB
testcase_24 AC 47 ms
65,820 KB
testcase_25 AC 257 ms
77,656 KB
testcase_26 AC 34 ms
53,144 KB
testcase_27 AC 32 ms
52,408 KB
testcase_28 AC 34 ms
52,868 KB
testcase_29 AC 34 ms
53,852 KB
testcase_30 AC 47 ms
66,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


def bit_count(n):
    return bin(n).count("1")


N, M = map(int, input().split())
S = tuple(tuple(map(int, input().split())) for _ in range(N))
Sb = [sum(1 << x for x in range(N) if S[x][i]) for i in range(M)]
dp = [0] * (1 << M)
alive = [0 for _ in range(1 << M)]
dp[0] = 1
alive[0] = (1 << N) - 1
for b in range(1 << M):
    for i in range(M):
        if (b >> i) & 1:
            continue
        affirmative = bit_count(alive[b] & Sb[i])
        c = b | (1 << i)
        if affirmative >= bit_count(alive[b]) - affirmative:
            dp[c] += dp[b]
        if not alive[c]:
            alive[c] = alive[b] & Sb[i]
print(dp[-1])
0