結果

問題 No.1560 majority x majority
ユーザー tcltktcltk
提出日時 2021-09-11 03:46:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 257 ms / 2,000 ms
コード長 1,028 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 90,236 KB
最終ジャッジ日時 2024-06-22 00:43:05
合計ジャッジ時間 7,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 224 ms
90,100 KB
testcase_01 AC 256 ms
90,232 KB
testcase_02 AC 122 ms
86,780 KB
testcase_03 AC 203 ms
90,164 KB
testcase_04 AC 188 ms
89,956 KB
testcase_05 AC 257 ms
89,848 KB
testcase_06 AC 161 ms
89,904 KB
testcase_07 AC 153 ms
89,864 KB
testcase_08 AC 189 ms
89,720 KB
testcase_09 AC 160 ms
89,828 KB
testcase_10 AC 146 ms
89,592 KB
testcase_11 AC 163 ms
89,832 KB
testcase_12 AC 151 ms
89,688 KB
testcase_13 AC 160 ms
89,940 KB
testcase_14 AC 150 ms
89,816 KB
testcase_15 AC 161 ms
89,656 KB
testcase_16 AC 157 ms
90,236 KB
testcase_17 AC 220 ms
90,004 KB
testcase_18 AC 173 ms
89,816 KB
testcase_19 AC 142 ms
89,672 KB
testcase_20 AC 151 ms
89,808 KB
testcase_21 AC 149 ms
89,736 KB
testcase_22 AC 182 ms
89,748 KB
testcase_23 AC 145 ms
89,968 KB
testcase_24 AC 153 ms
89,804 KB
testcase_25 AC 179 ms
89,800 KB
testcase_26 AC 127 ms
86,472 KB
testcase_27 AC 125 ms
86,768 KB
testcase_28 AC 126 ms
86,884 KB
testcase_29 AC 127 ms
86,836 KB
testcase_30 AC 141 ms
89,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
import bisect
import heapq


def input():
    return sys.stdin.readline()[:-1]


# sys.setrecursionlimit(1000000)

# _INPUT = """6 3
# 1 1 1
# 1 0 1
# 0 0 1
# 1 0 1
# 0 1 0
# 1 1 0
# """
# sys.stdin = io.StringIO(_INPUT)

INF = 10**10

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

B = []
for i in range(N):
    b = 0
    for j in range(M):
        if S[i][j]:
            b |= (1<<j)
    B.append(b)

T = []
for mask in range(1<<M):
    n = 0
    for i in range(N):
        if mask & B[i] == mask:
            n += 1
    T.append(n)

dp = [0] * (1<<M)
dp[0] = 1
for mask in range(1<<M):
    for j in range(M):
        if mask & (1<<j):
            continue
        n_agree_before = T[mask]
        n_agree_after = T[mask | (1<<j)]
        if n_agree_after * 2 >= n_agree_before:
            dp[mask | (1<<j)] += dp[mask]

ans = dp[(1<<M)-1]
print(ans)
0