結果

問題 No.2202 贅沢てりたまチキン
ユーザー n_nan_na
提出日時 2023-02-05 02:21:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 468 ms / 2,000 ms
コード長 1,757 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 90,960 KB
最終ジャッジ日時 2024-07-03 20:33:56
合計ジャッジ時間 5,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,096 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 36 ms
52,480 KB
testcase_04 AC 35 ms
52,224 KB
testcase_05 AC 34 ms
52,096 KB
testcase_06 AC 35 ms
52,352 KB
testcase_07 AC 34 ms
52,224 KB
testcase_08 AC 34 ms
51,840 KB
testcase_09 AC 34 ms
52,096 KB
testcase_10 AC 40 ms
61,824 KB
testcase_11 AC 34 ms
51,840 KB
testcase_12 AC 35 ms
52,096 KB
testcase_13 AC 35 ms
52,224 KB
testcase_14 AC 164 ms
85,632 KB
testcase_15 AC 162 ms
85,988 KB
testcase_16 AC 159 ms
85,644 KB
testcase_17 AC 168 ms
86,124 KB
testcase_18 AC 127 ms
90,960 KB
testcase_19 AC 122 ms
85,760 KB
testcase_20 AC 192 ms
86,144 KB
testcase_21 AC 187 ms
85,760 KB
testcase_22 AC 163 ms
75,904 KB
testcase_23 AC 266 ms
78,396 KB
testcase_24 AC 205 ms
77,440 KB
testcase_25 AC 468 ms
88,932 KB
testcase_26 AC 174 ms
85,760 KB
testcase_27 AC 167 ms
85,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    
    # インスタンス変数の初期化
    # インスタンス変数へアクセスするときは "self.インスタンス変数"
    def __init__(self, n):
        self.par = [-1]*n # 要素の根(親)
        self.rank = [0]*n # 要素が属している木の高さ
        self.siz = [1]*n # 要素が属している木の大きさ(要素数)

    # xのroot(Find)
    def root(self, x):
        if self.par[x] == -1:
            return x
        else:
            # 経路圧縮(xの親: par[x]を根に設定する)
            self.par[x] = self.root(self.par[x])
            return self.par[x]
    
    # xとyをmerge(Union)
    def merge(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        if rx == ry: return False
        
        # union by rank(rankが大きい方:rxに小さい方:ryをmerge)
        if self.rank[rx] < self.rank[ry]:
            rx,ry = ry,rx # rx: 親, ry: 子
        self.par[ry] = rx
        if self.rank[rx] == self.rank[ry]:
            self.rank[rx] += 1
            
        # 集合サイズを更新
        self.siz[rx] += self.siz[ry]
        
        return True
            
    # xとyが同一のgroupかどうか
    def issame(self, x, y):
        return self.root(x) == self.root(y)
    
    # xが含まれる木のサイズ
    def size(self, x):
        return self.siz[self.root(x)]

#---------------------------------------------------
N,M = map(int,input().split())
uf = UnionFind(2*N+10)

for _ in range(M):
    A,B = map(int,input().split())
    uf.merge(A,B+N)
    uf.merge(A+N,B)
    
res = True
for i in range(1,N+1):
    if not uf.issame(i,i+N):
        res = False
        break
        
if res: print("Yes")
else: print("No")
0