結果

問題 No.130 XOR Minimax
ユーザー htensaihtensai
提出日時 2020-01-15 15:43:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,340 ms / 5,000 ms
コード長 1,482 bytes
コンパイル時間 2,512 ms
コンパイル使用メモリ 79,448 KB
実行使用メモリ 99,320 KB
最終ジャッジ日時 2024-09-12 22:56:12
合計ジャッジ時間 29,693 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,138 ms
82,204 KB
testcase_01 AC 135 ms
54,420 KB
testcase_02 AC 136 ms
54,012 KB
testcase_03 AC 136 ms
54,376 KB
testcase_04 AC 560 ms
59,168 KB
testcase_05 AC 657 ms
59,224 KB
testcase_06 AC 1,177 ms
87,892 KB
testcase_07 AC 1,763 ms
97,844 KB
testcase_08 AC 2,340 ms
99,320 KB
testcase_09 AC 464 ms
62,480 KB
testcase_10 AC 588 ms
67,340 KB
testcase_11 AC 1,220 ms
75,580 KB
testcase_12 AC 353 ms
59,648 KB
testcase_13 AC 993 ms
73,772 KB
testcase_14 AC 2,016 ms
90,700 KB
testcase_15 AC 228 ms
58,136 KB
testcase_16 AC 1,477 ms
87,392 KB
testcase_17 AC 1,563 ms
84,856 KB
testcase_18 AC 1,784 ms
90,636 KB
testcase_19 AC 1,935 ms
92,892 KB
testcase_20 AC 1,055 ms
81,520 KB
testcase_21 AC 1,961 ms
90,968 KB
testcase_22 AC 661 ms
68,480 KB
testcase_23 AC 356 ms
59,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int[] base;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        base = new int[31];
        base[0] = 1;
        for (int i = 1; i < base.length; i++) { 
            base[i] = base[i - 1] * 2;
        }
        HashSet<Integer> set = new HashSet<>();
        for (int i = 0; i < n; i++) {
            set.add(sc.nextInt());
        }
        System.out.println(getMin(30, set));
    }
    
    static int getMin(int idx, HashSet<Integer> set) {
        if (idx == 0) {
            if(set.size() == 1) {
                return 0;
            } else {
                return 1;
            }
        }
        HashSet<Integer> next = new HashSet<>();
        for (int x : set) {
            if (x >= base[idx]) {
                next.add(x);
            }
        }
        if (next.size() == 0) {
            return getMin(idx - 1, set);
        } else if (next.size() == set.size()) {
            HashSet<Integer> tmp = new HashSet<>();
            for (int x : next) {
                tmp.add(x - base[idx]);
            }
            return getMin(idx - 1, tmp);
        } else {
            HashSet<Integer> tmp = new HashSet<>();
            for (int x : next) {
                tmp.add(x - base[idx]);
                set.remove(x);
            }
            return base[idx] + Math.min(getMin(idx - 1, set), getMin(idx - 1, tmp));
        }
    }
}
0