結果

問題 No.1560 majority x majority
ユーザー convexineqconvexineq
提出日時 2021-07-19 06:39:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 463 ms / 2,000 ms
コード長 691 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 81,760 KB
実行使用メモリ 237,280 KB
最終ジャッジ日時 2024-07-16 14:26:25
合計ジャッジ時間 5,466 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
216,796 KB
testcase_01 AC 463 ms
237,280 KB
testcase_02 AC 36 ms
52,352 KB
testcase_03 AC 330 ms
215,752 KB
testcase_04 AC 281 ms
194,568 KB
testcase_05 AC 280 ms
194,180 KB
testcase_06 AC 83 ms
85,552 KB
testcase_07 AC 61 ms
72,484 KB
testcase_08 AC 168 ms
124,920 KB
testcase_09 AC 96 ms
85,076 KB
testcase_10 AC 62 ms
70,420 KB
testcase_11 AC 70 ms
75,032 KB
testcase_12 AC 57 ms
68,520 KB
testcase_13 AC 72 ms
75,068 KB
testcase_14 AC 59 ms
72,328 KB
testcase_15 AC 113 ms
85,368 KB
testcase_16 AC 62 ms
70,404 KB
testcase_17 AC 253 ms
124,960 KB
testcase_18 AC 88 ms
81,024 KB
testcase_19 AC 59 ms
68,584 KB
testcase_20 AC 57 ms
67,616 KB
testcase_21 AC 60 ms
71,416 KB
testcase_22 AC 122 ms
102,040 KB
testcase_23 AC 63 ms
71,360 KB
testcase_24 AC 56 ms
67,800 KB
testcase_25 AC 125 ms
80,180 KB
testcase_26 AC 34 ms
52,612 KB
testcase_27 AC 34 ms
53,244 KB
testcase_28 AC 35 ms
52,344 KB
testcase_29 AC 35 ms
52,760 KB
testcase_30 AC 43 ms
63,544 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
res = [[0]*n for _ in range(m)]
for i in range(n):
    r = map(int,input().split())
    for j,rj in enumerate(r):
        res[j][i] = rj

M = 1<<m
dp = [None]*M
dp[0] = [1]*n
cnt = [0]*M
cnt[0] = n
for i in range(m):
    for j in range(1<<i):
        v = 0
        ndp = [0]*n
        for k in range(n):
            if dp[j][k] & res[i][k]:
                v += 1
                ndp[k] = 1
        dp[(1<<i)+j] = ndp
        cnt[(1<<i)+j] = v

ans = [0]*M
ans[0] = 1
for mask in range(M):
    for i in range(m):
        if mask>>i&1: continue
        nmask = mask|(1<<i)
        if cnt[mask] <= 2*cnt[nmask]:
            ans[nmask] += ans[mask]
print(ans[-1])
0