結果

問題 No.2202 贅沢てりたまチキン
ユーザー noriocnorioc
提出日時 2023-02-03 23:27:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 1,417 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,092 KB
最終ジャッジ日時 2024-07-02 21:31:57
合計ジャッジ時間 5,388 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,096 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 38 ms
52,096 KB
testcase_05 AC 39 ms
52,096 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 39 ms
52,096 KB
testcase_08 AC 40 ms
52,096 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 48 ms
66,176 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 43 ms
52,352 KB
testcase_14 AC 179 ms
85,376 KB
testcase_15 AC 182 ms
85,504 KB
testcase_16 AC 171 ms
85,376 KB
testcase_17 AC 182 ms
85,796 KB
testcase_18 AC 132 ms
87,680 KB
testcase_19 AC 129 ms
85,684 KB
testcase_20 AC 216 ms
86,484 KB
testcase_21 AC 220 ms
86,016 KB
testcase_22 AC 174 ms
76,288 KB
testcase_23 AC 274 ms
78,144 KB
testcase_24 AC 235 ms
77,568 KB
testcase_25 AC 589 ms
89,092 KB
testcase_26 AC 202 ms
85,888 KB
testcase_27 AC 185 ms
86,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.data = [-1] * (n + 1)
        self.nexts = [-1] * (n + 1) # 次の要素(なければ-1)
        self.tails = list(range(n + 1)) # 末尾の要素

    def root(self, a: int) -> int:
        if self.data[a] < 0: return a
        self.data[a] = self.root(self.data[a])
        return self.data[a]

    def unite(self, a: int, b: int) -> bool:
        pa = self.root(a)
        pb = self.root(b)
        if pa == pb: return False
        if self.data[pa] > self.data[pb]:
            pa, pb = pb, pa
        self.data[pa] += self.data[pb] # pa を pb をつなげる
        self.data[pb] = pa
        # pa の末尾に pb を繋げる
        self.nexts[self.tails[pa]] = pb
        self.tails[pa] = self.tails[pb]
        return True

    def issame(self, a: int, b: int) -> bool:
        return self.root(a) == self.root(b)

    def size(self, a: int) -> int:
        """a が属する集合のサイズ"""
        return -self.data[self.root(a)]

    def group(self, a):
        """a が属する集合"""
        v = self.root(a)
        while v != -1:
            yield v
            v = self.nexts[v]


N, M = map(int, input().split())
uf = UnionFind(N * 2 + 10)
for _ in range(M):
    A, B = map(int, input().split())
    uf.unite(A, B + N)
    uf.unite(A + N, B)

if all(uf.issame(i, i+N) for i in range(1, N+1)):
    print('Yes')
else:
    print('No')
0