結果
問題 | No.2911 位相の公理 |
ユーザー | nikoro256 |
提出日時 | 2024-10-04 22:51:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,870 bytes |
コンパイル時間 | 132 ms |
コンパイル使用メモリ | 81,824 KB |
実行使用メモリ | 76,972 KB |
最終ジャッジ日時 | 2024-10-04 22:51:43 |
合計ジャッジ時間 | 2,053 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 36 ms
55,012 KB |
testcase_01 | AC | 38 ms
55,144 KB |
testcase_02 | AC | 40 ms
54,244 KB |
testcase_03 | AC | 40 ms
54,544 KB |
testcase_04 | AC | 37 ms
54,608 KB |
testcase_05 | AC | 40 ms
54,724 KB |
testcase_06 | AC | 37 ms
54,996 KB |
testcase_07 | AC | 36 ms
55,340 KB |
testcase_08 | WA | - |
testcase_09 | AC | 36 ms
55,328 KB |
testcase_10 | AC | 36 ms
54,376 KB |
testcase_11 | AC | 37 ms
55,248 KB |
testcase_12 | AC | 37 ms
54,412 KB |
testcase_13 | AC | 37 ms
55,688 KB |
testcase_14 | AC | 37 ms
54,200 KB |
testcase_15 | AC | 38 ms
55,000 KB |
testcase_16 | AC | 37 ms
54,872 KB |
testcase_17 | AC | 41 ms
60,636 KB |
testcase_18 | AC | 70 ms
76,612 KB |
testcase_19 | AC | 89 ms
76,816 KB |
testcase_20 | AC | 88 ms
76,972 KB |
testcase_21 | WA | - |
testcase_22 | AC | 86 ms
76,956 KB |
testcase_23 | WA | - |
ソースコード
from collections import defaultdict class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): way=[] while True: if self.parents[x] < 0: break else: way.append(x) x=self.parents[x] for w in way: self.parents[w]=x return x def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def members(self, x): root = self.find(x) return [i for i in range(self.n) if self.find(i) == root] def roots(self): return [i for i, x in enumerate(self.parents) if x < 0] def group_count(self): return len(self.roots()) def all_group_members(self): group_members = defaultdict(list) for member in range(self.n): group_members[self.find(member)].append(member) return group_members def __str__(self): return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items()) N,M=map(int,input().split()) S=set() for _ in range(M): S.add(input()) #if '1'*N not in S: # print('No') # exit(0) Flag=[[True for _ in range(N)] for _ in range(N)] for s in S: for i in range(N): for j in range(N): if s[i]!=s[j]: Flag[i][j]=False uf=UnionFind(N) for i in range(N): for j in range(N): if Flag[i][j]: uf.union(i,j) #print(Flag) if 2**uf.group_count()>len(S): print('No') else: print('Yes')