結果
問題 | No.1560 majority x majority |
ユーザー | vwxyz |
提出日時 | 2024-06-02 06:40:02 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 380 bytes |
コンパイル時間 | 1,478 ms |
コンパイル使用メモリ | 82,080 KB |
実行使用メモリ | 126,816 KB |
最終ジャッジ日時 | 2024-06-02 06:40:15 |
合計ジャッジ時間 | 7,175 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
ソースコード
N,M=map(int,input().split()) S=[list(map(int,input().split())) for n in range(N)] dp=[0]*(1<<M) dp[0]=1 for bit in range(1<<M): idx=[n for n in range(N) if all(S[n][m] for m in range(M) if bit&1<<m)] for m in range(M): if bit&1<<m: continue if sum(S[n][m] for n in idx)*2>=len(idx): dp[bit|1<<m]+=dp[bit] ans=dp[(1<<M)-1] print(ans)