結果

問題 No.943 取り調べ
ユーザー face4face4
提出日時 2019-11-14 22:39:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 192 ms / 1,206 ms
コード長 1,766 bytes
コンパイル時間 2,283 ms
コンパイル使用メモリ 77,520 KB
実行使用メモリ 52,340 KB
最終ジャッジ日時 2024-09-24 22:58:34
合計ジャッジ時間 4,695 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
50,096 KB
testcase_01 AC 51 ms
49,864 KB
testcase_02 AC 52 ms
49,964 KB
testcase_03 AC 53 ms
50,064 KB
testcase_04 AC 135 ms
52,340 KB
testcase_05 AC 144 ms
51,824 KB
testcase_06 AC 144 ms
52,236 KB
testcase_07 AC 52 ms
49,792 KB
testcase_08 AC 112 ms
52,184 KB
testcase_09 AC 98 ms
52,120 KB
testcase_10 AC 100 ms
51,960 KB
testcase_11 AC 83 ms
51,716 KB
testcase_12 AC 56 ms
49,712 KB
testcase_13 AC 53 ms
49,752 KB
testcase_14 AC 55 ms
50,384 KB
testcase_15 AC 53 ms
50,100 KB
testcase_16 AC 52 ms
50,180 KB
testcase_17 AC 97 ms
52,100 KB
testcase_18 AC 52 ms
50,096 KB
testcase_19 AC 53 ms
49,892 KB
testcase_20 AC 54 ms
49,720 KB
testcase_21 AC 53 ms
49,876 KB
testcase_22 AC 103 ms
52,108 KB
testcase_23 AC 192 ms
52,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.InputStreamReader;
import java.io.IOException;
import java.io.BufferedReader;

public class Main{
    public static void main(String args[]) throws IOException{
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        int[] b = new int[n];
        for(int i = 0; i < n; i++){
            b[i] = 0;
            String line = br.readLine();
            if(line.charAt(line.length()-1) == ' ')    System.exit(1);
            String[] arr = line.split(" ");
            if(arr.length != n) System.exit(1);
            for(int j = 0; j < n; j++){
                int x = Integer.parseInt(arr[j]);
                b[i] += (1<<j) * x;
            }
        }
        int[] a = new int[n];
        String line = br.readLine();
        if(line.charAt(line.length()-1) == ' ')    System.exit(1);
        String[] arr = line.split(" ");
        if(arr.length != n) System.exit(1);
        for(int i = 0; i < n; i++)  a[i] = Integer.parseInt(arr[i]);
        int ans = 1<<30;
        for(int i = 0; i < 1<<n; i++){
            int score = 0;
            for(int j = 0; j < n; j++){
                if(((i>>j)&1) == 1)  score += a[j];
            }
    
            // 高速化出来る(しなくてもよい)
            // if(score >= ans) continue;
    
            int lie = i, confess = 0, k = -1;
            while(++k < n){
                if(((confess>>k)&1) == 1)  continue;
                if((lie&b[k]) == b[k]){
                    confess |= 1<<k;
                    lie |= 1<<k;
                    k = -1;
                }
            }
            
            if(confess == (1<<n)-1) ans = Math.min(ans, score);
        }
        System.out.println(ans);
    }
}
0