結果

問題 No.130 XOR Minimax
ユーザー tentententen
提出日時 2023-04-03 17:25:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 614 ms / 5,000 ms
コード長 2,274 bytes
コンパイル時間 2,382 ms
コンパイル使用メモリ 91,696 KB
実行使用メモリ 71,904 KB
最終ジャッジ日時 2023-10-25 05:23:26
合計ジャッジ時間 13,325 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 387 ms
68,432 KB
testcase_01 AC 55 ms
53,300 KB
testcase_02 AC 53 ms
53,304 KB
testcase_03 AC 53 ms
53,296 KB
testcase_04 AC 307 ms
63,928 KB
testcase_05 AC 614 ms
71,568 KB
testcase_06 AC 610 ms
69,904 KB
testcase_07 AC 590 ms
71,532 KB
testcase_08 AC 552 ms
71,904 KB
testcase_09 AC 184 ms
61,816 KB
testcase_10 AC 230 ms
61,824 KB
testcase_11 AC 534 ms
71,164 KB
testcase_12 AC 143 ms
58,868 KB
testcase_13 AC 474 ms
69,344 KB
testcase_14 AC 548 ms
70,268 KB
testcase_15 AC 91 ms
57,832 KB
testcase_16 AC 462 ms
68,080 KB
testcase_17 AC 546 ms
71,180 KB
testcase_18 AC 480 ms
68,212 KB
testcase_19 AC 560 ms
70,408 KB
testcase_20 AC 344 ms
66,156 KB
testcase_21 AC 585 ms
70,916 KB
testcase_22 AC 251 ms
63,284 KB
testcase_23 AC 141 ms
59,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.stream.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        ArrayList<Integer> list = new ArrayList<>();
        for (int i = 0; i < n; i++) {
            list.add(sc.nextInt());
        }
        System.out.println(check(30, list));
    }
    
    static int check(int idx, ArrayList<Integer> list) {
        if (idx < 0) {
            return 0;
        }
        ArrayList<Integer> ev = new ArrayList<>();
        ArrayList<Integer> od = new ArrayList<>();
        for (int x : list) {
            if ((x & (1 << idx)) == 0) {
                ev.add(x);
            } else {
                od.add(x);
            }
        }
        if (ev.size() == 0) {
            return check(idx - 1, od);
        } else if (od.size() == 0) {
            return check(idx - 1, ev);
        } else {
            return (1 << idx) + Math.min(check(idx - 1, ev), check(idx - 1, od));
        }
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0