結果

問題 No.1560 majority x majority
ユーザー momoyuumomoyuu
提出日時 2024-08-07 21:10:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 499 ms / 2,000 ms
コード長 898 bytes
コンパイル時間 1,367 ms
コンパイル使用メモリ 100,704 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-08-07 21:10:11
合計ジャッジ時間 6,151 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 499 ms
5,248 KB
testcase_01 AC 415 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 359 ms
5,376 KB
testcase_04 AC 338 ms
5,376 KB
testcase_05 AC 335 ms
5,376 KB
testcase_06 AC 41 ms
5,376 KB
testcase_07 AC 11 ms
5,376 KB
testcase_08 AC 176 ms
5,376 KB
testcase_09 AC 75 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 13 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 13 ms
5,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 57 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 239 ms
5,376 KB
testcase_18 AC 42 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 3 ms
5,376 KB
testcase_22 AC 100 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 83 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;


int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int n,m;
    cin>>n>>m;
    vector<vector<int>> s(n,vector<int>(m));
    for(int i = 0;i<n;i++) for(int j = 0;j<m;j++) cin>>s[i][j];
    vector<ll> dp(1<<m,0);
    dp[0] = 1;
    for(int i = 0;i<1<<m;i++){
        vector<int> use(n,0);
        for(int j = 0;j<n;j++){
            bool fn = false;
            for(int k = 0;k<m;k++) if(i>>k&1&&s[j][k]==0) fn = true;
            if(!fn) use[j] = 1;
        }
        for(int j = 0;j<m;j++) if(~i>>j&1){
            int cnt = 0;
            int ok = 0;
            for(int k = 0;k<n;k++) if(use[k]) {
                cnt++;
                if(s[k][j]==1) ok++;
            }
            if(2*ok>=cnt) dp[i|(1<<j)] += dp[i];
        }
    }
    cout<<dp[(1<<m)-1]<<endl;
}   

0