結果

問題 No.2895 Zero XOR Subset
ユーザー rlangevinrlangevin
提出日時 2024-09-20 21:36:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,598 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 106,944 KB
最終ジャッジ日時 2024-09-20 21:36:20
合計ジャッジ時間 7,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,136 KB
testcase_01 AC 50 ms
52,608 KB
testcase_02 WA -
testcase_03 AC 49 ms
60,928 KB
testcase_04 AC 49 ms
61,056 KB
testcase_05 AC 53 ms
61,184 KB
testcase_06 WA -
testcase_07 AC 49 ms
60,888 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 50 ms
61,312 KB
testcase_11 AC 48 ms
61,440 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 49 ms
61,172 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 49 ms
61,056 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 51 ms
61,212 KB
testcase_21 AC 50 ms
61,440 KB
testcase_22 WA -
testcase_23 AC 47 ms
61,440 KB
testcase_24 AC 48 ms
61,312 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 48 ms
61,056 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 48 ms
60,672 KB
testcase_36 WA -
権限があれば一括ダウンロードができます

ソースコード

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 
        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()
L = []
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:
        L.append((A[i], i))
        
L.sort(reverse=True)
for a, i in L:
    if a ^ now < now:
        ans.append(i + 1)
        now ^= a
        
ans.sort()
if now == 0:
    print(len(ans))
    for a in ans:
        print(a)
else:
    print(-1)
0