結果

問題 No.2202 贅沢てりたまチキン
ユーザー helloprahellopra
提出日時 2023-02-10 23:45:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 488 ms / 2,000 ms
コード長 2,358 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 174,580 KB
最終ジャッジ日時 2024-07-07 17:35:47
合計ジャッジ時間 5,966 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,272 KB
testcase_01 AC 41 ms
54,400 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 41 ms
53,888 KB
testcase_04 AC 42 ms
54,016 KB
testcase_05 AC 39 ms
54,400 KB
testcase_06 AC 40 ms
54,272 KB
testcase_07 AC 41 ms
54,144 KB
testcase_08 AC 39 ms
53,888 KB
testcase_09 AC 40 ms
54,144 KB
testcase_10 AC 171 ms
165,016 KB
testcase_11 AC 41 ms
54,016 KB
testcase_12 AC 40 ms
54,120 KB
testcase_13 AC 39 ms
53,888 KB
testcase_14 AC 210 ms
137,816 KB
testcase_15 AC 212 ms
138,004 KB
testcase_16 AC 205 ms
137,984 KB
testcase_17 AC 247 ms
174,580 KB
testcase_18 AC 142 ms
104,832 KB
testcase_19 AC 169 ms
111,784 KB
testcase_20 AC 229 ms
99,200 KB
testcase_21 AC 225 ms
99,456 KB
testcase_22 AC 163 ms
76,344 KB
testcase_23 AC 235 ms
78,976 KB
testcase_24 AC 197 ms
77,280 KB
testcase_25 AC 488 ms
163,776 KB
testcase_26 AC 249 ms
169,856 KB
testcase_27 AC 196 ms
118,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

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

    def find(self, x):
        #要素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が属するグループと要素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):
        #要素xが属するグループのサイズ(要素数)を返す
        return -self.parents[self.find(x)]

    def same(self, x, y):
        #要素x, yが同じグループに属するかどうかを返す
        return self.find(x) == self.find(y)

    def members(self, x):
        #要素xが属するグループに属する要素をリストで返す
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]

    def roots(self):
        #すべての根の要素をリストで返す
        return [i for i, x in enumerate(self.parents) if x < 0]

    def group_count(self):
        #グループの数を返す
        return len(self.roots())

    def all_group_members(self):
        #{ルート要素: [そのグループに含まれる要素のリスト], ...}のdefaultdictを返す
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

    def __str__(self):
        #print()での表示用 #ルート要素: [そのグループに含まれる要素のリスト]を文字列で返す
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())
        
N,M = map(int,input().split())
uf = UnionFind(2*N)
for i in range(M):
	a,b = map(int,input().split())
	a-=1
	b-=1
	uf.union(a+N,b)
	uf.union(a,b+N)

for k,l in uf.all_group_members().items():
	l = set(l)
	while l:
		t = l.pop()
		if t < N: x = t+N
		else:x=t-N

		if x in l:
			l.discard(x)
			continue
		else:
			print("No")
			exit()

print("Yes")
0