結果

問題 No.1560 majority x majority
ユーザー H3PO4H3PO4
提出日時 2022-11-27 16:20:32
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 583 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 252,236 KB
最終ジャッジ日時 2024-10-04 05:42:43
合計ジャッジ時間 9,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,179 ms
162,864 KB
testcase_02 AC 36 ms
52,004 KB
testcase_03 AC 148 ms
81,804 KB
testcase_04 AC 92 ms
79,416 KB
testcase_05 AC 156 ms
83,192 KB
testcase_06 AC 99 ms
77,540 KB
testcase_07 AC 71 ms
76,908 KB
testcase_08 AC 130 ms
80,248 KB
testcase_09 AC 106 ms
77,932 KB
testcase_10 AC 45 ms
64,472 KB
testcase_11 AC 77 ms
77,168 KB
testcase_12 AC 64 ms
72,964 KB
testcase_13 AC 81 ms
77,340 KB
testcase_14 AC 60 ms
75,048 KB
testcase_15 AC 102 ms
78,088 KB
testcase_16 AC 54 ms
69,244 KB
testcase_17 AC 162 ms
82,392 KB
testcase_18 AC 99 ms
78,984 KB
testcase_19 AC 45 ms
64,624 KB
testcase_20 AC 58 ms
71,092 KB
testcase_21 AC 55 ms
71,540 KB
testcase_22 AC 135 ms
81,096 KB
testcase_23 AC 46 ms
66,388 KB
testcase_24 AC 57 ms
70,108 KB
testcase_25 AC 129 ms
80,300 KB
testcase_26 AC 35 ms
53,476 KB
testcase_27 AC 33 ms
53,584 KB
testcase_28 AC 34 ms
52,632 KB
testcase_29 AC 33 ms
52,396 KB
testcase_30 AC 51 ms
65,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N, M = map(int, input().split())
S = tuple(tuple(map(int, input().split())) for _ in range(N))

dp = [0] * (1 << M)
alive = [[] for _ in range(1 << M)]
dp[0] = 1
alive[0] = list(range(N))
for b in range(1 << M):
    for i in range(M):
        if (b >> i) & 1:
            continue
        affirmative = sum(S[x][i] for x in alive[b])
        c = b | (1 << i)
        if affirmative >= len(alive[b]) - affirmative:
            dp[c] += dp[b]
        if not alive[c]:
            alive[c] = [x for x in alive[b] if S[x][i]]
print(dp[-1])
0