結果

問題 No.130 XOR Minimax
ユーザー tentententen
提出日時 2021-03-08 09:32:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,124 ms / 5,000 ms
コード長 1,285 bytes
コンパイル時間 6,285 ms
コンパイル使用メモリ 86,904 KB
実行使用メモリ 79,148 KB
最終ジャッジ日時 2024-10-09 18:51:07
合計ジャッジ時間 21,223 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 698 ms
65,148 KB
testcase_01 AC 125 ms
54,064 KB
testcase_02 AC 128 ms
54,248 KB
testcase_03 AC 129 ms
53,788 KB
testcase_04 AC 654 ms
63,764 KB
testcase_05 AC 1,113 ms
79,148 KB
testcase_06 AC 930 ms
76,584 KB
testcase_07 AC 1,047 ms
76,704 KB
testcase_08 AC 1,124 ms
76,764 KB
testcase_09 AC 358 ms
60,988 KB
testcase_10 AC 455 ms
61,460 KB
testcase_11 AC 941 ms
70,376 KB
testcase_12 AC 289 ms
61,192 KB
testcase_13 AC 765 ms
69,444 KB
testcase_14 AC 931 ms
70,076 KB
testcase_15 AC 192 ms
56,688 KB
testcase_16 AC 788 ms
67,424 KB
testcase_17 AC 933 ms
67,376 KB
testcase_18 AC 881 ms
68,092 KB
testcase_19 AC 896 ms
69,744 KB
testcase_20 AC 688 ms
65,160 KB
testcase_21 AC 1,007 ms
70,204 KB
testcase_22 AC 442 ms
59,640 KB
testcase_23 AC 274 ms
58,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        ArrayList<Integer> list = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            list.add(sc.nextInt());
        }
        System.out.println(getAnswer(30, list));
    }
    
    static int getAnswer(int idx, ArrayList<Integer> list) {
        int mask = (1 << idx);
        ArrayList<Integer> on = new ArrayList<>();
        ArrayList<Integer> off = new ArrayList<>();
        for (int x : list) {
            if ((mask & x) == 0) {
                off.add(x);
            } else {
                on.add(x);
            }
        }
        if (on.size() > 0 && off.size() > 0) {
            if (idx == 0) {
                return 1;
            } else {
                return mask + Math.min(getAnswer(idx - 1, on), getAnswer(idx - 1, off));
            }
        } else if (on.size() > 0) {
            if (idx == 0) {
                return 0;
            } else {
                return getAnswer(idx - 1, on);
            }
        } else {
            if (idx == 0) {
                return 0;
            } else {
                return getAnswer(idx - 1, off);
            }
        }
    }
}
0