結果

問題 No.2202 贅沢てりたまチキン
ユーザー minatominato
提出日時 2023-03-09 06:47:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 1,032 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 82,272 KB
最終ジャッジ日時 2024-09-18 02:48:34
合計ジャッジ時間 4,318 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,480 KB
testcase_01 AC 33 ms
52,400 KB
testcase_02 AC 33 ms
52,800 KB
testcase_03 AC 33 ms
53,472 KB
testcase_04 AC 31 ms
53,896 KB
testcase_05 AC 32 ms
52,476 KB
testcase_06 AC 32 ms
52,496 KB
testcase_07 AC 30 ms
52,548 KB
testcase_08 AC 31 ms
54,272 KB
testcase_09 AC 30 ms
52,996 KB
testcase_10 AC 32 ms
57,256 KB
testcase_11 AC 29 ms
53,012 KB
testcase_12 AC 31 ms
52,352 KB
testcase_13 AC 29 ms
52,948 KB
testcase_14 AC 134 ms
79,040 KB
testcase_15 AC 138 ms
79,112 KB
testcase_16 AC 132 ms
78,952 KB
testcase_17 AC 142 ms
79,552 KB
testcase_18 AC 105 ms
80,512 KB
testcase_19 AC 106 ms
79,360 KB
testcase_20 AC 160 ms
79,492 KB
testcase_21 AC 168 ms
79,220 KB
testcase_22 AC 146 ms
75,980 KB
testcase_23 AC 222 ms
78,164 KB
testcase_24 AC 173 ms
77,164 KB
testcase_25 AC 377 ms
82,272 KB
testcase_26 AC 153 ms
79,180 KB
testcase_27 AC 139 ms
79,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    def merge(self, a, b):
        x = self.root(a)
        y = self.root(b)
        if x == y:
            return False
        if -self.parent_or_size[x] < -self.parent_or_size[y]:
            x, y = y, x
        self.parent_or_size[x] += self.parent_or_size[y]
        self.parent_or_size[y] = x
        return True

    def same(self, a, b):
        return self.root(a) == self.root(b)

    def root(self, a):
        if self.parent_or_size[a] < 0:
            return a
        self.parent_or_size[a] = self.root(self.parent_or_size[a])
        return self.parent_or_size[a]

    def size(self, a):
        return -self.parent_or_size[self.root(a)]


N, M = map(int, input().split())

uf = UnionFind(N * 2)

for _ in range(M):
    a, b = map(int, input().split())
    uf.merge(a - 1, b - 1 + N)
    uf.merge(a - 1 + N, b - 1)

for i in range(N):
    if not uf.same(i, i + N):
        print("No")
        exit()

print("Yes")
0