結果

問題 No.1610 She Loves Me, She Loves Me Not, ...
ユーザー ys
提出日時 2022-03-12 13:08:26
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,020 bytes
コンパイル時間 434 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-09-16 19:17:42
合計ジャッジ時間 4,206 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 14 WA * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[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 roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]

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

for i in range(M):
  a, b = map(int, input().split())
  a, b = a - 1, b - 1
  uf.union(a, b)


ans = 0
for p in uf.roots():
  ans += uf.size(p) - 1



if ans % 2 == 1:
  print('Yes')
else:
  print('No')
0