結果

問題 No.2911 位相の公理
ユーザー nikoro256nikoro256
提出日時 2024-10-04 22:40:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,892 bytes
コンパイル時間 222 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,084 KB
最終ジャッジ日時 2024-10-04 22:40:16
合計ジャッジ時間 2,307 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,760 KB
testcase_01 AC 41 ms
54,016 KB
testcase_02 AC 46 ms
54,144 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 40 ms
53,760 KB
testcase_05 AC 39 ms
53,760 KB
testcase_06 AC 43 ms
54,144 KB
testcase_07 AC 40 ms
54,016 KB
testcase_08 WA -
testcase_09 AC 40 ms
54,016 KB
testcase_10 AC 38 ms
54,016 KB
testcase_11 AC 38 ms
53,760 KB
testcase_12 AC 40 ms
53,888 KB
testcase_13 AC 40 ms
53,760 KB
testcase_14 AC 41 ms
54,016 KB
testcase_15 AC 40 ms
54,144 KB
testcase_16 AC 41 ms
54,400 KB
testcase_17 AC 44 ms
60,416 KB
testcase_18 AC 78 ms
76,544 KB
testcase_19 AC 86 ms
76,928 KB
testcase_20 AC 98 ms
76,672 KB
testcase_21 WA -
testcase_22 AC 107 ms
77,084 KB
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
#print(uf.group_count())
if 2**uf.group_count()>len(S):
    print('No')
else:
    print('Yes')
0