結果

問題 No.699 ペアでチームを作ろう2
ユーザー tentententen
提出日時 2021-11-02 15:45:17
言語 Java21
(openjdk 21)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,055 bytes
コンパイル時間 2,197 ms
コンパイル使用メモリ 78,464 KB
実行使用メモリ 73,192 KB
最終ジャッジ日時 2024-10-11 20:05:25
合計ジャッジ時間 11,147 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,780 KB
testcase_01 AC 53 ms
37,124 KB
testcase_02 AC 67 ms
38,960 KB
testcase_03 AC 53 ms
37,184 KB
testcase_04 AC 145 ms
47,652 KB
testcase_05 AC 199 ms
45,840 KB
testcase_06 AC 218 ms
47,344 KB
testcase_07 AC 670 ms
61,536 KB
testcase_08 AC 707 ms
61,460 KB
testcase_09 AC 779 ms
61,996 KB
testcase_10 AC 986 ms
73,192 KB
testcase_11 AC 736 ms
61,460 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 AC 959 ms
63,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static int n;
    static int[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        n = sc.nextInt();
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        System.out.println(check1(0, new boolean[n]).last());
    }
    
    static TreeSet<Integer> check1(int idx, boolean[] used) {
        if (idx == n) {
            TreeSet<Integer> ans = new TreeSet<>();
            ans.add(0);
            return ans;
        }
        TreeSet<Integer> ans = null;
        for (int i = 0; i < n; i++) {
            if (!used[i]) {
                used[i] = true;
                ans = check2(idx + 1, used, values[i]);
                used[i] = false;
                break;
            }
        }
        return ans;
    }
    
    static TreeSet<Integer> check2(int idx, boolean[] used, int v) {
        TreeSet<Integer> ans = new TreeSet<>();
        for (int i = 0; i < n; i++) {
            if (used[i]) {
                continue;
            } 
            used[i] = true;
            TreeSet<Integer> tmp = check1(idx + 1, used);
            for (int x : tmp) {
                ans.add((v + values[i]) ^ x);
            }
            used[i] = false;
        }
        return ans;
    }
    
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public String nextLine() throws Exception {
        return br.readLine();
    }
    
    public String next() throws Exception {
        if (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0