結果
問題 | No.2895 Zero XOR Subset |
ユーザー | rlangevin |
提出日時 | 2024-09-20 22:07:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,680 bytes |
コンパイル時間 | 313 ms |
コンパイル使用メモリ | 82,224 KB |
実行使用メモリ | 106,632 KB |
最終ジャッジ日時 | 2024-09-20 22:07:48 |
合計ジャッジ時間 | 7,062 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
53,760 KB |
testcase_01 | AC | 45 ms
53,376 KB |
testcase_02 | AC | 133 ms
106,196 KB |
testcase_03 | AC | 64 ms
65,664 KB |
testcase_04 | AC | 63 ms
65,792 KB |
testcase_05 | AC | 65 ms
66,048 KB |
testcase_06 | AC | 126 ms
106,284 KB |
testcase_07 | AC | 63 ms
65,664 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 62 ms
66,048 KB |
testcase_11 | AC | 60 ms
65,920 KB |
testcase_12 | AC | 130 ms
106,032 KB |
testcase_13 | WA | - |
testcase_14 | AC | 69 ms
66,048 KB |
testcase_15 | AC | 137 ms
105,776 KB |
testcase_16 | AC | 68 ms
65,664 KB |
testcase_17 | AC | 69 ms
65,792 KB |
testcase_18 | WA | - |
testcase_19 | AC | 61 ms
66,304 KB |
testcase_20 | AC | 60 ms
66,304 KB |
testcase_21 | AC | 61 ms
65,408 KB |
testcase_22 | AC | 60 ms
65,920 KB |
testcase_23 | AC | 60 ms
66,048 KB |
testcase_24 | AC | 60 ms
66,432 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 59 ms
66,016 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 63 ms
65,960 KB |
testcase_32 | AC | 158 ms
106,288 KB |
testcase_33 | AC | 66 ms
66,432 KB |
testcase_34 | AC | 147 ms
106,220 KB |
testcase_35 | AC | 62 ms
65,920 KB |
testcase_36 | WA | - |
ソースコード
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] ans.sort() if now == 0: print(len(ans)) print(*ans) else: print(-1)