結果

問題 No.943 取り調べ
ユーザー face4face4
提出日時 2019-11-14 22:32:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 253 ms / 1,206 ms
コード長 1,208 bytes
コンパイル時間 2,149 ms
コンパイル使用メモリ 77,912 KB
実行使用メモリ 54,440 KB
最終ジャッジ日時 2024-09-24 22:58:06
合計ジャッジ時間 7,119 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
54,004 KB
testcase_01 AC 129 ms
53,956 KB
testcase_02 AC 128 ms
53,856 KB
testcase_03 AC 116 ms
52,976 KB
testcase_04 AC 212 ms
53,936 KB
testcase_05 AC 224 ms
53,976 KB
testcase_06 AC 228 ms
53,884 KB
testcase_07 AC 112 ms
53,128 KB
testcase_08 AC 210 ms
54,108 KB
testcase_09 AC 169 ms
54,116 KB
testcase_10 AC 161 ms
54,320 KB
testcase_11 AC 174 ms
54,348 KB
testcase_12 AC 132 ms
53,824 KB
testcase_13 AC 139 ms
54,260 KB
testcase_14 AC 138 ms
53,868 KB
testcase_15 AC 135 ms
54,056 KB
testcase_16 AC 131 ms
54,064 KB
testcase_17 AC 179 ms
54,440 KB
testcase_18 AC 128 ms
54,212 KB
testcase_19 AC 131 ms
54,292 KB
testcase_20 AC 131 ms
54,136 KB
testcase_21 AC 131 ms
54,412 KB
testcase_22 AC 188 ms
54,052 KB
testcase_23 AC 253 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{
    public static void main(String args[]){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] b = new int[n];
        for(int i = 0; i < n; i++){
            b[i] = 0;
            for(int j = 0; j < n; j++){
                int x = sc.nextInt();
                b[i] += (1<<j) * x;
            }
        }
        int[] a = new int[n];
        for(int i = 0; i < n; i++)  a[i] = sc.nextInt();
        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