結果

問題 No.1560 majority x majority
ユーザー tentententen
提出日時 2021-06-28 13:27:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 738 ms / 2,000 ms
コード長 2,291 bytes
コンパイル時間 3,185 ms
コンパイル使用メモリ 77,588 KB
実行使用メモリ 79,584 KB
最終ジャッジ日時 2024-06-25 12:09:36
合計ジャッジ時間 12,094 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 738 ms
79,584 KB
testcase_01 AC 664 ms
79,560 KB
testcase_02 AC 62 ms
50,404 KB
testcase_03 AC 538 ms
70,416 KB
testcase_04 AC 497 ms
67,628 KB
testcase_05 AC 514 ms
67,536 KB
testcase_06 AC 167 ms
55,524 KB
testcase_07 AC 187 ms
53,384 KB
testcase_08 AC 408 ms
61,252 KB
testcase_09 AC 297 ms
59,588 KB
testcase_10 AC 88 ms
51,416 KB
testcase_11 AC 179 ms
52,464 KB
testcase_12 AC 139 ms
52,476 KB
testcase_13 AC 173 ms
52,592 KB
testcase_14 AC 148 ms
52,016 KB
testcase_15 AC 193 ms
55,472 KB
testcase_16 AC 123 ms
51,904 KB
testcase_17 AC 446 ms
61,060 KB
testcase_18 AC 269 ms
56,228 KB
testcase_19 AC 89 ms
51,224 KB
testcase_20 AC 119 ms
51,808 KB
testcase_21 AC 136 ms
52,140 KB
testcase_22 AC 364 ms
58,960 KB
testcase_23 AC 99 ms
51,864 KB
testcase_24 AC 94 ms
51,336 KB
testcase_25 AC 341 ms
58,864 KB
testcase_26 AC 63 ms
49,896 KB
testcase_27 AC 62 ms
50,400 KB
testcase_28 AC 64 ms
50,024 KB
testcase_29 AC 64 ms
50,392 KB
testcase_30 AC 66 ms
50,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static int n;
    static int m;
    static boolean[][] votes;
    static boolean[][] unables;
    static int[] dp;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int m = sc.nextInt();
        boolean[][] votes = new boolean[n][m];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                votes[i][j] = (sc.nextInt() == 1);
            }
        }
        boolean[][] unables = new boolean[1 << m][n];
        for (int i = 0; i < (1 << m); i++) {
            for (int j = 0; j < m; j++) {
                if ((i & (1 << j)) != 0) {
                    continue;
                }
                for (int k = 0; k < n; k++) {
                    unables[i][k] |= !votes[k][j];
                }
            }
        }
        int[] dp = new int[1 << m];
        dp[0] = 1;
        for (int i = 1; i < (1 << m); i++) {
            for (int j = 0; j < m; j++) {
                if ((i & (1 << j)) == 0) {
                    continue;
                }
                int agree = 0;
                int against = 0;
                for (int k = 0; k < n; k++) {
                    if (unables[i][k]) {
                        continue;
                    }
                    if (votes[k][j]) {
                        agree++;
                    } else {
                        against++;
                    }
                }
                if (agree >= against) {
                    dp[i] += dp[i ^ (1 << j)];
                }
            }
        }
        System.out.println(dp[(1 << m) - 1]);
    }
}


class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0