結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,600 KB
testcase_01 AC 42 ms
52,204 KB
testcase_02 WA -
testcase_03 AC 47 ms
62,080 KB
testcase_04 AC 47 ms
62,564 KB
testcase_05 AC 47 ms
61,844 KB
testcase_06 WA -
testcase_07 AC 48 ms
61,900 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 48 ms
61,464 KB
testcase_11 AC 48 ms
61,700 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 49 ms
61,384 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 48 ms
61,692 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 49 ms
62,020 KB
testcase_21 AC 48 ms
61,048 KB
testcase_22 WA -
testcase_23 AC 56 ms
61,872 KB
testcase_24 AC 49 ms
62,212 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 48 ms
61,404 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 49 ms
61,256 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))
    print(*ans)
else:
    print(-1)
0