結果

問題 No.2895 Zero XOR Subset
ユーザー ntudantuda
提出日時 2024-09-26 21:35:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,380 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,304 KB
最終ジャッジ日時 2024-09-26 21:35:43
合計ジャッジ時間 6,120 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 139 ms
112,184 KB
testcase_03 AC 95 ms
75,904 KB
testcase_04 AC 91 ms
76,032 KB
testcase_05 AC 87 ms
75,904 KB
testcase_06 AC 141 ms
112,044 KB
testcase_07 AC 83 ms
75,648 KB
testcase_08 AC 142 ms
112,304 KB
testcase_09 AC 80 ms
76,416 KB
testcase_10 AC 83 ms
75,776 KB
testcase_11 AC 85 ms
76,084 KB
testcase_12 AC 141 ms
112,304 KB
testcase_13 AC 78 ms
75,776 KB
testcase_14 AC 86 ms
76,160 KB
testcase_15 AC 137 ms
111,928 KB
testcase_16 AC 76 ms
76,032 KB
testcase_17 AC 90 ms
75,904 KB
testcase_18 AC 140 ms
112,048 KB
testcase_19 AC 76 ms
76,032 KB
testcase_20 AC 75 ms
75,904 KB
testcase_21 AC 78 ms
75,776 KB
testcase_22 AC 71 ms
74,496 KB
testcase_23 AC 88 ms
75,904 KB
testcase_24 AC 85 ms
76,416 KB
testcase_25 AC 68 ms
73,728 KB
testcase_26 AC 137 ms
111,792 KB
testcase_27 AC 82 ms
76,032 KB
testcase_28 AC 78 ms
76,032 KB
testcase_29 AC 136 ms
112,048 KB
testcase_30 AC 70 ms
74,240 KB
testcase_31 AC 76 ms
76,416 KB
testcase_32 AC 133 ms
112,176 KB
testcase_33 AC 76 ms
75,904 KB
testcase_34 AC 136 ms
111,796 KB
testcase_35 AC 90 ms
75,904 KB
testcase_36 AC 137 ms
111,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

'''
from random import randint
N = 60
A = set()
while len(A) < N:
    A.add(randint(1, (1<<(N-1))-1))
A = sorted(list(A))
'''
N = int(input())
A = list(map(int,input().split()))
N = min(61,N)

tmp = 0
for a in A:
    tmp |= a

A2 = []
for i in range(N):
    A2.append([A[i],[i]])
def f():
    tmp = 1
    for i in range(N - 1):
        f = True
        cmp = -1
        for j in range(N):
            if f:
                if A2[j][0] & tmp:
                    f = False
                    cmp = A2[j][0]
                    idx = A2[j][1]
            else:
                if A2[j][0] & cmp & tmp:
                    A2[j][0] ^= cmp
                    tmp2 = A2[j][1] + idx
                    tmp2.sort()
                    tmp3 = []
                    n = len(tmp2)
                    i = 0
                    while i < n:
                        if i < n - 1 and tmp2[i] == tmp2[i+1]:
                            i += 2
                        else:
                            tmp3.append(tmp2[i])
                            i += 1
                    A2[j][1] = tmp3

        tmp <<= 1
i = 0
while i < 20 and A2[0][0] > 0:
    f()
    A2.sort()
    i += 1
#print(A)
#print(A2[0])
#print("cnt", i)

tmp = 0
for i in A2[0][1]:
    tmp ^= A[i]
#print(tmp)
#print()

if A2[0][0] == 0:
    print(len(A2[0][1]))
    print(*[i + 1 for i in A2[0][1]])
else:
    print(-1)

0