結果

問題 No.1560 majority x majority
ユーザー Kiri8128Kiri8128
提出日時 2021-06-25 22:16:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 1,190 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 81,000 KB
最終ジャッジ日時 2024-06-25 08:31:20
合計ジャッジ時間 3,815 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 178 ms
79,032 KB
testcase_01 AC 183 ms
81,000 KB
testcase_02 AC 37 ms
52,196 KB
testcase_03 AC 161 ms
79,400 KB
testcase_04 AC 149 ms
78,648 KB
testcase_05 AC 157 ms
80,348 KB
testcase_06 AC 79 ms
76,984 KB
testcase_07 AC 62 ms
72,012 KB
testcase_08 AC 116 ms
78,804 KB
testcase_09 AC 89 ms
76,816 KB
testcase_10 AC 62 ms
67,920 KB
testcase_11 AC 68 ms
74,464 KB
testcase_12 AC 57 ms
67,048 KB
testcase_13 AC 70 ms
73,832 KB
testcase_14 AC 60 ms
71,916 KB
testcase_15 AC 82 ms
76,864 KB
testcase_16 AC 60 ms
68,632 KB
testcase_17 AC 117 ms
78,724 KB
testcase_18 AC 80 ms
77,344 KB
testcase_19 AC 62 ms
69,000 KB
testcase_20 AC 58 ms
67,196 KB
testcase_21 AC 60 ms
69,952 KB
testcase_22 AC 90 ms
77,684 KB
testcase_23 AC 63 ms
71,088 KB
testcase_24 AC 57 ms
66,476 KB
testcase_25 AC 86 ms
77,844 KB
testcase_26 AC 37 ms
52,744 KB
testcase_27 AC 37 ms
53,600 KB
testcase_28 AC 36 ms
53,076 KB
testcase_29 AC 38 ms
53,928 KB
testcase_30 AC 44 ms
61,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

NN = 16
KK = (1 << (1 << NN)) - 1
I0 = KK // 3
I1 = KK // 5
I2 = KK // 17
I3 = KK // 257

def popcount(x):
    x -= (x >> 1) & I0
    x = (x & I1) + ((x >> 2) & I1)
    x = (x + (x >> 4)) & I2
    x = (x + (x >> 8)) & I3
    x += x >> 16
    x += x >> 32
    x += x >> 64
    x += x >> 128
    x += x >> 256
    x += x >> 512
    x += x >> 1024
    x += x >> 2048
    x += x >> 4096
    return x & 0xffff

N, M = map(int, input().split())
I = [[] for _ in range(M)]
IV = {1 << i: i for i in range(M)}
for i in range(N):
    for j, a in enumerate(input().split()):
        I[j].append(a)
A = []
for ii in I:
    A.append(int("0" + "".join(ii[::-1]), 2))

mmm = (1 << N) - 1
AND = [0] * (1 << M)
PC = [0] * (1 << M)
AND[0] = mmm
PC[0] = N
ANS = [0] * (1 << M)
ANS[0] = 1
for i in range(1, 1 << M):
    a = i & -i
    if a == i:
        AND[i] = A[IV[a]]
        PC[i] = popcount(AND[i])
    else:
        AND[i] = AND[a] & AND[i^a]
        PC[i] = popcount(AND[i])
    
    pc = PC[i]
    ans = 0
    for j in range(N):
        if i >> j & 1:
            ij = i ^ (1 << j)
            ppc = PC[ij]
            if pc * 2 >= ppc:
                ans += ANS[ij]
    ANS[i] = ans

print(ANS[-1])
0