結果

問題 No.943 取り調べ
ユーザー htensaihtensai
提出日時 2020-02-17 09:06:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 102 ms / 1,206 ms
コード長 1,331 bytes
コンパイル時間 1,904 ms
コンパイル使用メモリ 77,820 KB
実行使用メモリ 39,156 KB
最終ジャッジ日時 2024-10-06 14:49:32
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
36,516 KB
testcase_01 AC 48 ms
36,632 KB
testcase_02 AC 49 ms
36,532 KB
testcase_03 AC 48 ms
36,824 KB
testcase_04 AC 97 ms
39,156 KB
testcase_05 AC 97 ms
39,052 KB
testcase_06 AC 98 ms
39,080 KB
testcase_07 AC 50 ms
36,504 KB
testcase_08 AC 100 ms
39,088 KB
testcase_09 AC 77 ms
38,196 KB
testcase_10 AC 74 ms
38,408 KB
testcase_11 AC 75 ms
37,580 KB
testcase_12 AC 50 ms
36,516 KB
testcase_13 AC 51 ms
36,776 KB
testcase_14 AC 50 ms
36,736 KB
testcase_15 AC 49 ms
36,616 KB
testcase_16 AC 49 ms
36,644 KB
testcase_17 AC 73 ms
38,388 KB
testcase_18 AC 48 ms
36,504 KB
testcase_19 AC 49 ms
36,528 KB
testcase_20 AC 49 ms
36,512 KB
testcase_21 AC 50 ms
36,384 KB
testcase_22 AC 73 ms
38,444 KB
testcase_23 AC 102 ms
39,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int[] cost;
    static int[] trust;
    static int[] dp;
    static int n;
	public static void main (String[] args) throws Exception {
	    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		n = Integer.parseInt(br.readLine());
		trust = new int[n];
		for (int i = 0; i < n; i++) {
		    String[] line = br.readLine().split(" ", n);
		    for (int j = 0; j < n; j++) {
		        trust[i] += Integer.parseInt(line[j]) << j;
		    }
		}
		cost = new int[n];
		String[] line = br.readLine().split(" ", n);
		for (int i = 0; i < n; i++) {
		    cost[i] = Integer.parseInt(line[i]);
		}
		dp = new int[1 << n];
		Arrays.fill(dp, -1);
		System.out.println(dfw((1 << n) - 1));
    }
    
    static int dfw(int key) {
        if (key == 0) {
            return 0;
        }
        if (dp[key] != -1) {
            return dp[key];
        } 
        int min = Integer.MAX_VALUE / 10;
        for (int i = 0; i < n; i++) {
            if (((1 << i) & key) == 0) {
                continue;
            }
            int add = 0;
            if ((key & trust[i]) != trust[i]) {
                add += cost[i];
            }
            min = Math.min(min, dfw(key ^ (1 << i)) + add);
        }
        dp[key] = min;
        return min;
    }
}
0