結果

問題 No.2910 単体ホモロジー入門
ユーザー nikoro256nikoro256
提出日時 2024-10-04 22:13:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,703 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,272 KB
実行使用メモリ 55,720 KB
最終ジャッジ日時 2024-10-04 22:13:37
合計ジャッジ時間 2,954 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,528 KB
testcase_01 AC 39 ms
54,144 KB
testcase_02 AC 38 ms
53,888 KB
testcase_03 AC 38 ms
54,272 KB
testcase_04 AC 40 ms
54,008 KB
testcase_05 AC 40 ms
53,888 KB
testcase_06 AC 39 ms
54,272 KB
testcase_07 AC 38 ms
53,760 KB
testcase_08 WA -
testcase_09 AC 37 ms
53,852 KB
testcase_10 AC 38 ms
53,760 KB
testcase_11 AC 38 ms
53,888 KB
testcase_12 AC 37 ms
53,888 KB
testcase_13 AC 38 ms
53,888 KB
testcase_14 AC 41 ms
54,016 KB
testcase_15 AC 39 ms
54,272 KB
testcase_16 AC 38 ms
54,144 KB
testcase_17 AC 38 ms
54,272 KB
testcase_18 AC 37 ms
53,984 KB
testcase_19 AC 37 ms
54,144 KB
testcase_20 AC 37 ms
54,144 KB
testcase_21 AC 38 ms
54,528 KB
testcase_22 AC 37 ms
54,400 KB
testcase_23 AC 38 ms
53,760 KB
testcase_24 AC 43 ms
53,888 KB
testcase_25 AC 38 ms
54,400 KB
testcase_26 AC 38 ms
54,016 KB
testcase_27 AC 37 ms
53,760 KB
testcase_28 WA -
testcase_29 AC 37 ms
54,272 KB
testcase_30 AC 37 ms
54,272 KB
testcase_31 WA -
testcase_32 AC 38 ms
53,888 KB
testcase_33 AC 39 ms
53,760 KB
testcase_34 AC 38 ms
53,760 KB
testcase_35 AC 37 ms
54,016 KB
testcase_36 AC 38 ms
54,656 KB
testcase_37 WA -
testcase_38 AC 37 ms
53,920 KB
testcase_39 AC 37 ms
53,888 KB
testcase_40 AC 36 ms
54,052 KB
testcase_41 AC 36 ms
54,144 KB
testcase_42 WA -
testcase_43 AC 36 ms
54,144 KB
testcase_44 AC 37 ms
54,272 KB
testcase_45 AC 36 ms
54,400 KB
testcase_46 AC 36 ms
54,140 KB
権限があれば一括ダウンロードができます

ソースコード

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())
uf=UnionFind(N)
edges=[]
for _ in range(M):
    i,j=map(int,input().split())
    edges.append((i,j))
V=set(list(map(int,input().split())))
for i,j in edges:
    if uf.same(i,j):
        if i in V and j in V:
            continue
        print('Yes')
        exit(0)
    uf.union(i,j)
print('No')
0