結果

問題 No.2895 Zero XOR Subset
ユーザー rlangevinrlangevin
提出日時 2024-09-20 22:10:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 1,719 bytes
コンパイル時間 398 ms
コンパイル使用メモリ 82,192 KB
実行使用メモリ 106,404 KB
最終ジャッジ日時 2024-09-20 22:11:55
合計ジャッジ時間 5,344 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,632 KB
testcase_01 AC 45 ms
54,016 KB
testcase_02 AC 131 ms
106,220 KB
testcase_03 AC 73 ms
65,920 KB
testcase_04 AC 60 ms
66,304 KB
testcase_05 AC 61 ms
66,560 KB
testcase_06 AC 126 ms
106,352 KB
testcase_07 AC 60 ms
65,408 KB
testcase_08 AC 127 ms
106,216 KB
testcase_09 AC 62 ms
66,176 KB
testcase_10 AC 61 ms
66,176 KB
testcase_11 AC 60 ms
65,536 KB
testcase_12 AC 126 ms
106,200 KB
testcase_13 AC 63 ms
66,304 KB
testcase_14 AC 62 ms
65,792 KB
testcase_15 AC 152 ms
106,152 KB
testcase_16 AC 62 ms
65,920 KB
testcase_17 AC 62 ms
66,048 KB
testcase_18 AC 127 ms
106,020 KB
testcase_19 AC 60 ms
65,920 KB
testcase_20 AC 62 ms
66,048 KB
testcase_21 AC 60 ms
66,048 KB
testcase_22 AC 62 ms
66,048 KB
testcase_23 AC 61 ms
66,176 KB
testcase_24 AC 61 ms
66,176 KB
testcase_25 AC 59 ms
66,048 KB
testcase_26 AC 125 ms
105,896 KB
testcase_27 AC 75 ms
66,584 KB
testcase_28 AC 64 ms
66,688 KB
testcase_29 AC 130 ms
105,996 KB
testcase_30 AC 59 ms
66,308 KB
testcase_31 AC 60 ms
66,176 KB
testcase_32 AC 128 ms
105,896 KB
testcase_33 AC 62 ms
66,048 KB
testcase_34 AC 125 ms
106,404 KB
testcase_35 AC 62 ms
65,664 KB
testcase_36 AC 127 ms
105,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class xor_base():
    def __init__(self):
        self.K = 60
        self._list = [0] * self.K
        self.cnt = 0
        
    def min_all(self, x):
        for i in range(self.K - 1, -1, -1):
            if (x >> i) & 1:
                x ^= self._list[i]
        return x
    
    def add(self, x):
        x = self.min_all(x)
        if x == 0:
            return 0
        for i in range(self.K - 1, -1, -1):
            if (x >> i) & 1:
                for j in range(self.K):
                    if (self._list[j] >> i) & 1:
                        self._list[j] ^= x
                self._list[i] = x
                self.cnt += 1
                return 1
        return 0
            
    def get(self, x):
        now = 0
        for i in range(self.K):
            if self._list[i] == 0:
                continue
            if x & 1:
                now ^= self._list[i]
            x >>= 1
        return now
    
    def __len__(self):
        return self.cnt              
        
    def __str__(self):
        return f"{self._list}, len = {self.cnt}"
    
    
N = int(input())
A = list(map(int, input().split()))
X = xor_base()
XX = []
XX.append(X)
from copy import *
now = -1
ans = []
for i, a in enumerate(A):
    if a == 0:
        print(1)
        print(i + 1)
        exit()
    if not X.add(a):
        now = a
        ans.append(i+1) 
        break
    else:
        XX.append(deepcopy(X))
else:
    print(-1)
    exit()
        
ind = ans[-1] - 1
for i in range(ind, 0, -1):
    if not XX[i - 1].add(now ^ A[i - 1]):
        ans.append(i)
        now ^= A[i - 1]
        if now == 0:
            break
        
ans.sort()
if now == 0:
    print(len(ans))
    print(*ans)
else:
    print(-1)
0