結果

問題 No.1560 majority x majority
ユーザー tentententen
提出日時 2021-06-28 13:22:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 633 ms / 2,000 ms
コード長 2,372 bytes
コンパイル時間 2,329 ms
コンパイル使用メモリ 78,668 KB
実行使用メモリ 79,612 KB
最終ジャッジ日時 2024-06-25 12:09:20
合計ジャッジ時間 11,083 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 633 ms
79,612 KB
testcase_01 AC 615 ms
79,480 KB
testcase_02 AC 69 ms
50,064 KB
testcase_03 AC 496 ms
70,656 KB
testcase_04 AC 447 ms
67,512 KB
testcase_05 AC 508 ms
67,660 KB
testcase_06 AC 123 ms
54,324 KB
testcase_07 AC 163 ms
52,416 KB
testcase_08 AC 328 ms
61,180 KB
testcase_09 AC 198 ms
59,180 KB
testcase_10 AC 83 ms
51,520 KB
testcase_11 AC 192 ms
52,996 KB
testcase_12 AC 139 ms
52,312 KB
testcase_13 AC 169 ms
52,776 KB
testcase_14 AC 141 ms
52,156 KB
testcase_15 AC 177 ms
55,152 KB
testcase_16 AC 121 ms
52,140 KB
testcase_17 AC 484 ms
60,932 KB
testcase_18 AC 301 ms
56,092 KB
testcase_19 AC 82 ms
51,256 KB
testcase_20 AC 112 ms
51,952 KB
testcase_21 AC 123 ms
52,212 KB
testcase_22 AC 408 ms
58,788 KB
testcase_23 AC 101 ms
51,680 KB
testcase_24 AC 98 ms
51,432 KB
testcase_25 AC 332 ms
57,044 KB
testcase_26 AC 56 ms
50,616 KB
testcase_27 AC 56 ms
50,164 KB
testcase_28 AC 59 ms
52,100 KB
testcase_29 AC 58 ms
50,168 KB
testcase_30 AC 59 ms
50,296 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();
        n = sc.nextInt();
        m = sc.nextInt();
        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);
            }
        }
        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];
                }
            }
        }
        dp = new int[1 << m];
        Arrays.fill(dp, -1);
        dp[0] = 1;
        System.out.println(dfw((1 << m) - 1));
    }
    
    static int dfw(int mask) {
        if (dp[mask] < 0) {
            dp[mask] = 0;
            for (int i = 0; i < m; i++) {
                if ((mask & (1 << i)) == 0) {
                    continue;
                }
                int agree = 0;
                int against = 0;
                for (int j = 0; j < n; j++) {
                    if (unables[mask][j]) {
                        continue;
                    }
                    if (votes[j][i]) {
                        agree++;
                    } else {
                        against++;
                    }
                }
                if (agree >= against) {
                    dp[mask] += dfw(mask ^ (1 << i));
                }
            }
        }
        return dp[mask];
    }
}


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