結果

問題 No.1560 majority x majority
ユーザー chocoruskchocorusk
提出日時 2021-06-25 21:58:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 555 ms / 2,000 ms
コード長 1,457 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 190,064 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 08:25:30
合計ジャッジ時間 8,750 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 441 ms
6,812 KB
testcase_01 AC 461 ms
6,816 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 555 ms
6,940 KB
testcase_04 AC 366 ms
6,944 KB
testcase_05 AC 517 ms
6,940 KB
testcase_06 AC 111 ms
6,940 KB
testcase_07 AC 19 ms
6,940 KB
testcase_08 AC 405 ms
6,944 KB
testcase_09 AC 202 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 23 ms
6,944 KB
testcase_12 AC 7 ms
6,940 KB
testcase_13 AC 31 ms
6,944 KB
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 149 ms
6,940 KB
testcase_16 AC 4 ms
6,944 KB
testcase_17 AC 429 ms
6,940 KB
testcase_18 AC 76 ms
6,940 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 5 ms
6,940 KB
testcase_21 AC 6 ms
6,944 KB
testcase_22 AC 167 ms
6,940 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 3 ms
6,940 KB
testcase_25 AC 141 ms
6,940 KB
testcase_26 AC 4 ms
6,944 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 3 ms
6,944 KB
testcase_30 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#include <list>
#include <atcoder/all>
#define popcount __builtin_popcount
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<int, int> P;

int main()
{
    int n, m;
    cin>>n>>m;
    int s[5050][13];
    for(int i=0; i<n; i++) for(int j=0; j<m; j++) cin>>s[i][j];
    bitset<5001> b[1<<12];
    for(int i=0; i<(1<<m); i++){
        for(int j=0; j<n; j++){
            b[i][j]=1;
        }
        for(int j=0; j<n; j++){
            for(int k=0; k<m; k++){
                if(i&(1<<k)){
                    if(!s[j][k]) b[i][j]=0;
                }
            }
        }
    }
    ll dp[1<<12]={};
    dp[0]=1;
    for(int i=0; i<(1<<m); i++){
        for(int j=0; j<m; j++){
            if(i&(1<<j)) continue;
            int c=0, c1=0;
            for(int k=0; k<n; k++){
                if(!b[i][k]) continue;
                c++;
                if(s[k][j]) c1++;
            }
            if(c<=c1*2) dp[i^(1<<j)]+=dp[i];
        }
    }
    cout<<dp[(1<<m)-1]<<endl;
    return 0;
}


0