結果

問題 No.699 ペアでチームを作ろう2
ユーザー htensaihtensai
提出日時 2020-01-07 12:07:35
言語 Java19
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,243 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 73,980 KB
実行使用メモリ 59,304 KB
最終ジャッジ日時 2023-08-14 23:13:20
合計ジャッジ時間 6,981 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
56,408 KB
testcase_01 AC 121 ms
55,708 KB
testcase_02 AC 164 ms
59,304 KB
testcase_03 AC 120 ms
56,116 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static int n;
    static int[] arr;
    static int max = Integer.MIN_VALUE;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        arr = new int[n];
        for (int i = 0; i < n; i++ ){
            arr[i] = sc.nextInt();
        }
        search(1, new int[n]);
        System.out.println(max);
    }
    
    static void search(int count, int[] used) {
        if (count > n / 2) {
            int[] base = new int[n / 2 + 1];
            for (int i = 0; i < n; i++) {
                base[used[i]] += arr[i];
            }
            int ans = 0;
            for (int i = 1; i < base.length; i++) {
                ans ^= base[i];
            }
            max = Math.max(ans, max);
        }
        for (int i = 0; i < n - 1; i++) {
            if (used[i] != 0) {
                continue;
            }
            used[i] = count;
            for (int j = i + 1; j < n; j++) {
                if (used[j] != 0) {
                    continue;
                }
                used[j] = count;
                search(count + 1, used);
                used[j] = 0;
            }
            used[i] = 0;
        }
    }
}
0