結果

問題 No.1560 majority x majority
ユーザー vwxyzvwxyz
提出日時 2024-06-02 07:02:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 973 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 78,492 KB
最終ジャッジ日時 2024-06-02 07:02:23
合計ジャッジ時間 3,381 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 101 ms
76,488 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 81 ms
77,056 KB
testcase_07 AC 68 ms
76,484 KB
testcase_08 AC 88 ms
77,516 KB
testcase_09 AC 84 ms
77,344 KB
testcase_10 AC 65 ms
70,528 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 66 ms
74,112 KB
testcase_14 AC 68 ms
76,852 KB
testcase_15 AC 82 ms
77,204 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 35 ms
52,096 KB
testcase_27 AC 35 ms
52,480 KB
testcase_28 AC 35 ms
51,840 KB
testcase_29 AC 37 ms
52,224 KB
testcase_30 AC 45 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def Pop_Count(N):
    r=(N&0x5555555555555555)+((N>>1)&0x5555555555555555)
    r=(r&0x3333333333333333)+((r>>2)&0x3333333333333333)
    r=(r&0x0f0f0f0f0f0f0f0f)+((r>>4)&0x0f0f0f0f0f0f0f0f)
    r=(r&0x00ff00ff00ff00ff)+((r>>8)&0x00ff00ff00ff00ff)
    r=(r&0x0000ffff0000ffff)+((r>>16)&0x0000ffff0000ffff)
    r=(r&0x00000000ffffffff)+((r>>32)&0x00000000ffffffff)
    return r

N,M=map(int,input().split())
S=[0]*M
for n in range(N):
    s=list(map(int,input().split()))
    for m in range(M):
        S[m]|=s[m]<<n
dp_cnt=[0]*(1<<M)
dp_cnt[0]=1
dp_bit=[None]*(1<<M)
dp_bit[0]=(1<<N)-1
dp_pop=[None]*(1<<M)
dp_pop[0]=N
for bit in range(1<<M):
    for m in range(M):
        if bit&1<<m:
            dp_bit[bit]=dp_bit[bit^1<<m]&S[m]
            dp_pop[bit]=Pop_Count(dp_bit[bit])
            break
for bit in range(1<<M):
    for m in range(M):
        if bit&1<<m and dp_pop[bit]*2>=dp_pop[bit^1<<m]:
            dp_cnt[bit]+=dp_cnt[bit^1<<m]
ans=dp_cnt[(1<<M)-1]
print(ans)
0