結果

問題 No.2202 贅沢てりたまチキン
ユーザー noriocnorioc
提出日時 2023-02-03 23:26:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 472 ms / 2,000 ms
コード長 1,440 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 88,972 KB
最終ジャッジ日時 2024-07-02 21:31:29
合計ジャッジ時間 4,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,224 KB
testcase_01 AC 37 ms
52,224 KB
testcase_02 AC 36 ms
52,608 KB
testcase_03 AC 32 ms
52,224 KB
testcase_04 AC 32 ms
51,968 KB
testcase_05 AC 33 ms
52,096 KB
testcase_06 AC 34 ms
52,096 KB
testcase_07 AC 34 ms
52,276 KB
testcase_08 AC 34 ms
52,096 KB
testcase_09 AC 33 ms
52,096 KB
testcase_10 AC 42 ms
66,304 KB
testcase_11 AC 35 ms
51,712 KB
testcase_12 AC 34 ms
51,712 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 169 ms
85,620 KB
testcase_15 AC 164 ms
85,504 KB
testcase_16 AC 167 ms
85,568 KB
testcase_17 AC 174 ms
85,760 KB
testcase_18 AC 121 ms
87,552 KB
testcase_19 AC 127 ms
85,888 KB
testcase_20 AC 197 ms
85,888 KB
testcase_21 AC 211 ms
86,400 KB
testcase_22 AC 158 ms
76,032 KB
testcase_23 AC 258 ms
78,268 KB
testcase_24 AC 206 ms
77,184 KB
testcase_25 AC 472 ms
88,972 KB
testcase_26 AC 178 ms
86,016 KB
testcase_27 AC 168 ms
86,036 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)


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