結果

問題 No.130 XOR Minimax
ユーザー tentententen
提出日時 2023-04-03 17:25:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 633 ms / 5,000 ms
コード長 2,274 bytes
コンパイル時間 2,543 ms
コンパイル使用メモリ 91,064 KB
実行使用メモリ 71,896 KB
最終ジャッジ日時 2024-09-25 00:48:27
合計ジャッジ時間 13,201 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 403 ms
65,032 KB
testcase_01 AC 54 ms
50,440 KB
testcase_02 AC 53 ms
50,384 KB
testcase_03 AC 54 ms
50,268 KB
testcase_04 AC 315 ms
60,800 KB
testcase_05 AC 633 ms
67,204 KB
testcase_06 AC 621 ms
71,896 KB
testcase_07 AC 603 ms
67,924 KB
testcase_08 AC 539 ms
68,628 KB
testcase_09 AC 189 ms
58,648 KB
testcase_10 AC 247 ms
59,220 KB
testcase_11 AC 525 ms
67,768 KB
testcase_12 AC 148 ms
55,708 KB
testcase_13 AC 500 ms
66,008 KB
testcase_14 AC 588 ms
67,744 KB
testcase_15 AC 91 ms
53,836 KB
testcase_16 AC 436 ms
65,148 KB
testcase_17 AC 548 ms
67,660 KB
testcase_18 AC 432 ms
65,164 KB
testcase_19 AC 534 ms
67,504 KB
testcase_20 AC 372 ms
63,024 KB
testcase_21 AC 571 ms
67,848 KB
testcase_22 AC 249 ms
59,544 KB
testcase_23 AC 129 ms
55,528 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