結果
| 問題 |
No.943 取り調べ
|
| コンテスト | |
| ユーザー |
ks2m
|
| 提出日時 | 2019-12-06 00:18:19 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 605 ms / 1,206 ms |
| コード長 | 1,569 bytes |
| コンパイル時間 | 2,510 ms |
| コンパイル使用メモリ | 78,064 KB |
| 実行使用メモリ | 45,700 KB |
| 最終ジャッジ日時 | 2024-12-23 04:38:38 |
| 合計ジャッジ時間 | 8,105 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 24 |
ソースコード
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayDeque;
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;
int rem = all;
Queue<Integer> que = new ArrayDeque<>();
for (int j = 0; j < n; j++) {
if ((x & 1) == 1) {
val += a[j];
arr[j] = 0;
rem -= (1 << j);
que.add(j);
}
x /= 2;
}
for (int k = 0; k < n; k++) {
if ((rem >> k & 1) == 1 && arr[k] == 0) {
rem -= (1 << k);
que.add(k);
}
}
while (!que.isEmpty()) {
int j = que.poll();
for (int k = 0; k < n; k++) {
if ((rem >> k & 1) == 1) {
arr[k] &= (all - (1 << j));
if (arr[k] == 0) {
rem -= (1 << k);
que.add(k);
}
}
}
}
if (rem == 0) {
ans = Math.min(ans, val);
}
}
System.out.println(ans);
}
}
ks2m