結果

問題 No.1560 majority x majority
ユーザー convexineqconvexineq
提出日時 2021-07-19 07:02:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 206 ms / 2,000 ms
コード長 375 bytes
コンパイル時間 484 ms
コンパイル使用メモリ 82,156 KB
実行使用メモリ 86,868 KB
最終ジャッジ日時 2024-07-16 15:41:31
合計ジャッジ時間 3,563 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
86,784 KB
testcase_01 AC 203 ms
86,868 KB
testcase_02 AC 38 ms
53,544 KB
testcase_03 AC 188 ms
85,404 KB
testcase_04 AC 174 ms
84,752 KB
testcase_05 AC 121 ms
84,176 KB
testcase_06 AC 67 ms
76,672 KB
testcase_07 AC 48 ms
67,580 KB
testcase_08 AC 118 ms
82,392 KB
testcase_09 AC 75 ms
77,000 KB
testcase_10 AC 40 ms
60,568 KB
testcase_11 AC 48 ms
67,788 KB
testcase_12 AC 41 ms
62,724 KB
testcase_13 AC 51 ms
68,952 KB
testcase_14 AC 43 ms
64,104 KB
testcase_15 AC 74 ms
77,308 KB
testcase_16 AC 40 ms
60,556 KB
testcase_17 AC 115 ms
82,404 KB
testcase_18 AC 65 ms
78,560 KB
testcase_19 AC 40 ms
59,736 KB
testcase_20 AC 41 ms
61,040 KB
testcase_21 AC 44 ms
61,600 KB
testcase_22 AC 80 ms
79,932 KB
testcase_23 AC 40 ms
60,064 KB
testcase_24 AC 39 ms
59,524 KB
testcase_25 AC 72 ms
78,668 KB
testcase_26 AC 34 ms
52,276 KB
testcase_27 AC 34 ms
52,948 KB
testcase_28 AC 35 ms
53,928 KB
testcase_29 AC 35 ms
54,060 KB
testcase_30 AC 41 ms
61,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,*R = map(int,open(0).read().split())
r = [int("".join(map(str,R[i::m])),2) for i in range(m)]

dp = [(1<<n)-1]
for i in range(m):
    dp += [x&r[i] for x in dp]
*c, = map(lambda s:bin(s).count("1"), dp)

M = 1<<m
A = [0]*M
A[0] = 1
for S in range(M):
    for i in range(m):
        T = S|1<<i
        if S>>i&1==0 and c[S] <= 2*c[T]:
            A[T] += A[S]
print(A[-1])
0