結果

問題 No.943 取り調べ
ユーザー tentententen
提出日時 2020-08-27 01:12:20
言語 Java21
(openjdk 21)
結果
AC  
実行時間 243 ms / 1,206 ms
コード長 1,221 bytes
コンパイル時間 2,775 ms
コンパイル使用メモリ 77,752 KB
実行使用メモリ 42,848 KB
最終ジャッジ日時 2024-11-07 14:23:37
合計ジャッジ時間 7,274 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,240 KB
testcase_01 AC 134 ms
41,140 KB
testcase_02 AC 131 ms
41,140 KB
testcase_03 AC 121 ms
39,908 KB
testcase_04 AC 196 ms
42,848 KB
testcase_05 AC 206 ms
42,468 KB
testcase_06 AC 201 ms
42,516 KB
testcase_07 AC 131 ms
41,192 KB
testcase_08 AC 192 ms
42,392 KB
testcase_09 AC 175 ms
41,824 KB
testcase_10 AC 164 ms
41,724 KB
testcase_11 AC 156 ms
41,584 KB
testcase_12 AC 114 ms
39,956 KB
testcase_13 AC 139 ms
41,288 KB
testcase_14 AC 137 ms
41,300 KB
testcase_15 AC 126 ms
40,404 KB
testcase_16 AC 127 ms
41,068 KB
testcase_17 AC 243 ms
41,916 KB
testcase_18 AC 134 ms
41,172 KB
testcase_19 AC 138 ms
41,456 KB
testcase_20 AC 135 ms
41,096 KB
testcase_21 AC 129 ms
41,056 KB
testcase_22 AC 171 ms
41,708 KB
testcase_23 AC 192 ms
42,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int[] keys;
    static int[] costs;
    static int[] dp;
	public static void main (String[] args) {
    	Scanner sc = new Scanner(System.in);
    	n = sc.nextInt();
    	keys = new int[n];
    	for (int i = n - 1; i >= 0; i--) {
    	    for (int j = 0; j < n; j++) {
    	        keys[i] <<= 1;
    	        keys[i] += sc.nextInt();
    	    }
    	}
    	costs = new int[n];
    	for (int i = n - 1; i >= 0; i--) {
    	    costs[i] = sc.nextInt();
    	}
    	dp = new int[1 << n];
    	System.out.println(dfw((1 << n) - 1));
    }
    
    static int dfw(int mask) {
        if (mask == 0) {
            return 0;
        }
        if (dp[mask] == 0) {
            int min = Integer.MAX_VALUE;
            for (int i = 0; i < n; i++) {
                if (((1 << i) & mask) == 0) {
                    continue;
                }
                if ((keys[i] & mask) == keys[i]) {
                    min = Math.min(min, dfw(mask ^ (1 << i)));
                } else {
                    min = Math.min(min, dfw(mask ^ (1 << i)) + costs[i]);
                }
            }
            dp[mask] = min;
        }
        return dp[mask];
    }
}

0