結果

問題 No.943 取り調べ
ユーザー ks2mks2m
提出日時 2019-12-06 00:25:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 577 ms / 1,206 ms
コード長 1,719 bytes
コンパイル時間 1,712 ms
コンパイル使用メモリ 78,296 KB
実行使用メモリ 46,584 KB
最終ジャッジ日時 2024-06-02 09:00:32
合計ジャッジ時間 6,565 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
37,092 KB
testcase_01 AC 45 ms
36,524 KB
testcase_02 AC 43 ms
36,944 KB
testcase_03 AC 44 ms
36,956 KB
testcase_04 AC 370 ms
45,804 KB
testcase_05 AC 577 ms
46,456 KB
testcase_06 AC 571 ms
45,500 KB
testcase_07 AC 45 ms
37,204 KB
testcase_08 AC 391 ms
45,772 KB
testcase_09 AC 211 ms
45,508 KB
testcase_10 AC 198 ms
46,256 KB
testcase_11 AC 139 ms
44,696 KB
testcase_12 AC 43 ms
36,540 KB
testcase_13 AC 48 ms
37,076 KB
testcase_14 AC 50 ms
37,176 KB
testcase_15 AC 45 ms
36,860 KB
testcase_16 AC 47 ms
36,976 KB
testcase_17 AC 241 ms
45,160 KB
testcase_18 AC 44 ms
36,652 KB
testcase_19 AC 46 ms
37,076 KB
testcase_20 AC 43 ms
37,116 KB
testcase_21 AC 43 ms
37,116 KB
testcase_22 AC 266 ms
45,548 KB
testcase_23 AC 485 ms
46,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Queue;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		int n = Integer.parseInt(br.readLine());
		int[] arr0 = new int[n];
		for (int i = 0; i < n; i++) {
			String[] sa = br.readLine().split(" ");
			for (int j = 0; j < n; j++) {
				if (Integer.parseInt(sa[j]) == 1) {
					arr0[i] += 1 << j;
				}
			}
		}
		String[] sa = br.readLine().split(" ");
		int[] a = new int[n];
		for (int i = 0; i < n; i++) {
			a[i] = Integer.parseInt(sa[i]);
		}
		br.close();

		int ans = Integer.MAX_VALUE;
		int end = 1 << n;
		int all = end - 1;
		for (int i = 0; i < end; i++) {
			int[] arr = new int[n];
			System.arraycopy(arr0, 0, arr, 0, n);

			int val = 0;
			int x = i;
			boolean[] rem = new boolean[n];
			Arrays.fill(rem, true);
			Queue<Integer> que = new ArrayDeque<>();
			for (int j = 0; j < n; j++) {
				if ((x & 1) == 1) {
					val += a[j];
					arr[j] = 0;
					rem[j] = false;
					que.add(j);
				}
				x /= 2;
			}
			for (int k = 0; k < n; k++) {
				if (rem[k] && arr[k] == 0) {
					rem[k] = false;
					que.add(k);
				}
			}
			while (!que.isEmpty()) {
				int j = que.poll();
				for (int k = 0; k < n; k++) {
					if (rem[k]) {
						arr[k] &= (all - (1 << j));
						if (arr[k] == 0) {
							rem[k] = false;
							que.add(k);
						}
					}
				}
			}
			boolean flg = true;
			for (int k = 0; k < n; k++) {
				if (rem[k]) {
					flg = false;
					break;
				}
			}
			if (flg) {
				ans = Math.min(ans, val);
			}
		}
		System.out.println(ans);
	}
}
0