結果

問題 No.2202 贅沢てりたまチキン
ユーザー komkompikomkompi
提出日時 2023-06-11 14:11:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 800 ms / 2,000 ms
コード長 1,676 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 91,084 KB
最終ジャッジ日時 2024-06-11 01:00:22
合計ジャッジ時間 6,471 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 44 ms
52,096 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,968 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 41 ms
51,712 KB
testcase_07 AC 42 ms
51,840 KB
testcase_08 AC 41 ms
52,480 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 48 ms
61,696 KB
testcase_11 AC 41 ms
51,584 KB
testcase_12 AC 41 ms
51,712 KB
testcase_13 AC 40 ms
52,352 KB
testcase_14 AC 184 ms
85,504 KB
testcase_15 AC 182 ms
86,016 KB
testcase_16 AC 183 ms
85,504 KB
testcase_17 AC 188 ms
85,888 KB
testcase_18 AC 135 ms
80,768 KB
testcase_19 AC 134 ms
85,320 KB
testcase_20 AC 207 ms
85,760 KB
testcase_21 AC 204 ms
85,888 KB
testcase_22 AC 187 ms
76,160 KB
testcase_23 AC 301 ms
78,364 KB
testcase_24 AC 222 ms
77,440 KB
testcase_25 AC 800 ms
91,084 KB
testcase_26 AC 195 ms
85,760 KB
testcase_27 AC 180 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

class UnionFind():
    # 初期化
    def __init__(self, n):
        self.par = [-1] * n
        self.rank = [0] * n
        self.siz = [1] * n

    # 根を求める
    def root(self, x):
        if self.par[x] == -1: return x # x が根の場合は x を返す
        else:
          self.par[x] = self.root(self.par[x]) # 経路圧縮
          return self.par[x]

    # x と y が同じグループに属するか (根が一致するか)
    def issame(self, x, y):
        return self.root(x) == self.root(y)

    # x を含むグループと y を含むグループを併合する
    def unite(self, x, y):
        # x 側と y 側の根を取得する
        rx = self.root(x)
        ry = self.root(y)
        if rx == ry: return False # すでに同じグループのときは何もしない
        # union by rank
        if self.rank[rx] < self.rank[ry]: # ry 側の rank が小さくなるようにする
            rx, ry = ry, rx
        self.par[ry] = rx # ry を rx の子とする
        if self.rank[rx] == self.rank[ry]: # rx 側の rank を調整する
            self.rank[rx] += 1
        self.siz[rx] += self.siz[ry] # rx 側の siz を調整する
        return True
    
    # x を含む根付き木のサイズを求める
    def size(self, x):
        return self.siz[self.root(x)]


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

for _ in range(M):
    A,B=map(int,input().split())
    A-=1
    B-=1
    r_A=2*N-A-1
    r_B=2*N-B-1
    
    uf.unite(A,r_B)
    uf.unite(B,r_A)

for i in range(N):
    if not uf.issame(i,2*N-i-1):
        print("No")
        exit()

print("Yes")
    



            
0