結果

問題 No.2895 Zero XOR Subset
ユーザー hibit_athibit_at
提出日時 2024-09-20 21:49:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,373 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 80,364 KB
最終ジャッジ日時 2024-09-20 21:49:12
合計ジャッジ時間 4,132 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,128 KB
testcase_01 AC 25 ms
10,624 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 #

def find_triplet(a):
    from collections import defaultdict

    # 要素をキー、インデックスのリストを値とする辞書を作成
    index_map = defaultdict(list)
    for idx, num in enumerate(a):
        index_map[num].append(idx)

    n = len(a)

    # 各要素a[k]を基準に探索
    for k in range(n):
        target = a[k]
        for i in range(n):
            a_i = a[i]
            a_j = target ^ a_i  # a[j] = a[k] XOR a[i]
            if a_j in index_map:
                # a[j] が存在する場合、そのインデックスを取得
                for j in index_map[a_j]:
                    if j != k and j != i:  # 異なるインデックスであることを確認
                        return (i, j, k)
    return None

# 使用例
n = int(input())
a = list(map(int, input().split(' ')))

for i in range(n):
    if a[i] == 0:
        print(1)
        print(i+1)
        exit()

from collections import Counter

cnt = Counter(a)

for key,val in cnt.items():
    if val >= 2:
        ans = []
        for i in range(n):
            if a[i] == key:
                ans.append(i+1)
            if len(ans) == 2:
                break
        print(2)
        print(*ans)
        exit()

result = find_triplet(a)
if result:
    i, j, k = result
    print(3)
    ans = [i+1,j+1,k+1]
    ans.sort()
    print(*ans)
else:
    print(-1)
0