結果

問題 No.2895 Zero XOR Subset
ユーザー tentententen
提出日時 2024-09-25 15:26:54
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 2,316 bytes
コンパイル時間 3,166 ms
コンパイル使用メモリ 91,124 KB
実行使用メモリ 51,236 KB
最終ジャッジ日時 2024-09-25 15:27:04
合計ジャッジ時間 7,341 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
51,236 KB
testcase_01 AC 54 ms
50,176 KB
testcase_02 TLE -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static List<Set<Long>> visited = new ArrayList<>();
    static long[] values;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = Math.min(sc.nextInt(), 61);
        values = new long[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextLong();
            visited.add(new HashSet<>());
        }
        for (int i = n - 1; i >= 0; i--) {
            List<Integer> ans = dfw(i - 1, values[i]);
            if (ans != null) {
                ans.add(i + 1);
                System.out.println(ans.size());
                System.out.println(ans.stream().map(x -> x.toString()).collect(Collectors.joining(" ")));
                return;
            }
        }
        System.out.println(-1);
    }
    
    static List<Integer> dfw(int idx, long v) {
        if (v == 0) {
            return new ArrayList<>();
        }
        if (idx < 0) {
            return null;
        }
        if (!visited.get(idx).contains(v)) {
            visited.get(idx).add(v);
            List<Integer> current = dfw(idx - 1, v);
            if (current != null) {
                return current;
            }
            current = dfw(idx - 1, v ^ values[idx]);
            if (current != null) {
                current.add(idx + 1);
                return current;
            }
        }
        return null;
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0