結果
問題 | No.2672 Subset Xor Sum |
ユーザー | Basin-Bug |
提出日時 | 2024-03-15 21:54:54 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,013 bytes |
コンパイル時間 | 175 ms |
コンパイル使用メモリ | 82,072 KB |
実行使用メモリ | 206,092 KB |
最終ジャッジ日時 | 2024-09-30 00:58:57 |
合計ジャッジ時間 | 5,693 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
61,452 KB |
testcase_01 | AC | 44 ms
55,152 KB |
testcase_02 | AC | 42 ms
54,336 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 40 ms
55,004 KB |
testcase_06 | AC | 38 ms
54,620 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 39 ms
55,260 KB |
testcase_11 | AC | 40 ms
54,496 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 40 ms
54,484 KB |
testcase_23 | AC | 40 ms
54,440 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | TLE | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
testcase_64 | -- | - |
testcase_65 | -- | - |
testcase_66 | -- | - |
testcase_67 | -- | - |
ソースコード
import collections from collections import defaultdict class UnionFind(): def __init__(self): ''' unionfind経路圧縮あり,要素にtupleや文字列可,始めに要素数指定なし ''' self.parents = dict() # {子要素:親ID,} self.members_set = collections.defaultdict(lambda : set()) # keyが根でvalueが根に属する要素要素(tupleや文字列可) self.roots_set = set() # 根の集合(tupleや文字列可) self.key_ID = dict() # 各要素にIDを割り振る self.ID_key = dict() # IDから要素名を復元する self.cnt = 0 # IDのカウンター def dictf(self,x): # 要素名とIDをやり取りするところ if x in self.key_ID: return self.key_ID[x] else: self.cnt += 1 self.key_ID[x] = self.cnt self.parents[x] = self.cnt self.ID_key[self.cnt] = x self.members_set[x].add(x) self.roots_set.add(x) return self.key_ID[x] def find(self, x): ID_x = self.dictf(x) if self.parents[x] == ID_x: return x else: self.parents[x] = self.key_ID[self.find(self.ID_key[self.parents[x]])] return self.ID_key[self.parents[x]] def union(self, x, y): x = self.find(x) y = self.find(y) if self.parents[x] > self.parents[y]: x, y = y, x if x == y: return for i in self.members_set[y]: self.members_set[x].add(i) self.members_set[y] = set() self.roots_set.remove(y) self.parents[y] = self.key_ID[x] def size(self, x):#xが含まれる集合の要素数 return len(self.members_set[self.find(x)]) def same(self, x, y):#同じ集合に属するかの判定 return self.find(x) == self.find(y) def members(self, x):#xを含む集合の要素 return self.members_set[self.find(x)] def roots(self):#根の要素 return self.roots_set def group_count(self):#根の数 return len(self.roots_set) def all_group_members(self):#根とその要素 return {r: self.members_set[r] for r in self.roots_set} N = int(input()) A = list(map(int, input().split())) uf = UnionFind() info_numbers = defaultdict(list) info_prime = defaultdict(int) for i in range(N): p = A[i] for i in range(13, -1, -1): if p >= 2 ** i: info_numbers[A[i]].append(2 ** i) info_prime[2 ** i] += 1 p -= 2 ** i for i in range(N): for j in range(1, len(info_numbers[A[i]])): uf.union(info_numbers[A[i]][j], info_numbers[A[i]][0]) for j in info_prime.values(): if j % 2 != 0: print("No") exit() if uf.group_count() % 2 != 0: print("No") else: print("Yes")