結果

問題 No.1805 Approaching Many Typhoon
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-11 02:33:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,213 bytes
コンパイル時間 568 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 68,736 KB
最終ジャッジ日時 2024-09-15 02:28:00
合計ジャッジ時間 3,768 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 39 ms
52,376 KB
testcase_03 AC 40 ms
52,224 KB
testcase_04 AC 40 ms
52,556 KB
testcase_05 AC 40 ms
52,608 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 39 ms
51,840 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 38 ms
51,840 KB
testcase_12 AC 40 ms
52,352 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 40 ms
52,096 KB
testcase_15 AC 39 ms
52,096 KB
testcase_16 AC 39 ms
52,352 KB
testcase_17 AC 39 ms
52,224 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 39 ms
52,352 KB
testcase_20 AC 40 ms
51,840 KB
testcase_21 AC 40 ms
52,224 KB
testcase_22 AC 40 ms
52,132 KB
testcase_23 AC 39 ms
52,352 KB
testcase_24 AC 39 ms
51,840 KB
testcase_25 AC 39 ms
52,224 KB
testcase_26 AC 39 ms
52,224 KB
testcase_27 AC 39 ms
52,224 KB
testcase_28 AC 74 ms
67,968 KB
testcase_29 AC 65 ms
68,736 KB
testcase_30 AC 65 ms
67,968 KB
testcase_31 AC 65 ms
68,480 KB
testcase_32 AC 42 ms
52,480 KB
testcase_33 AC 41 ms
52,864 KB
testcase_34 AC 44 ms
53,760 KB
testcase_35 AC 48 ms
55,552 KB
testcase_36 AC 57 ms
61,568 KB
testcase_37 AC 40 ms
52,096 KB
testcase_38 AC 39 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [0]*n

    def Find(self, x):
        if self.par[x] < 0:
            return x
        else:
            self.par[x] = self.Find(self.par[x])
            return self.par[x]

    def Unite(self, x, y):
        x = self.Find(x)
        y = self.Find(y)

        if x != y:
            if self.rank[x] < self.rank[y]:
                self.par[y] += self.par[x]
                self.par[x] = y
            else:
                self.par[x] += self.par[y]
                self.par[y] = x
                if self.rank[x] == self.rank[y]:
                    self.rank[x] += 1

    def Same(self, x, y):
        return self.Find(x) == self.Find(y)

    def Size(self, x):
        return -self.par[self.Find(x)]

n, m = map(int, input().split())
s, g = map(int, input().split())
s, g = s-1, g-1
E = []
for i in range(m):
    f, t = map(int, input().split())
    f, t = f-1, t-1
    E.append((f, t))
u = int(input())
I = list(map(int, input().split()))
I = [i-1 for i in I]
I = set(I)
uf = UnionFind(n)
for f, t in E:
    if f not in I and t not in I:
        uf.Unite(f, t)
if uf.Same(s, g):
    print('Yes')
else:
    print('No')
0