結果

問題 No.2202 贅沢てりたまチキン
ユーザー tamatotamato
提出日時 2023-02-03 21:26:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 306 ms / 2,000 ms
コード長 1,380 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 82,816 KB
最終ジャッジ日時 2024-07-02 19:08:12
合計ジャッジ時間 4,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,224 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 41 ms
52,352 KB
testcase_06 AC 40 ms
51,840 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 40 ms
52,224 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 45 ms
58,240 KB
testcase_11 AC 41 ms
51,712 KB
testcase_12 AC 41 ms
52,480 KB
testcase_13 AC 41 ms
52,096 KB
testcase_14 AC 158 ms
81,856 KB
testcase_15 AC 163 ms
81,792 KB
testcase_16 AC 158 ms
81,664 KB
testcase_17 AC 201 ms
82,304 KB
testcase_18 AC 114 ms
78,592 KB
testcase_19 AC 90 ms
81,892 KB
testcase_20 AC 198 ms
82,252 KB
testcase_21 AC 195 ms
82,816 KB
testcase_22 AC 183 ms
75,488 KB
testcase_23 AC 250 ms
77,132 KB
testcase_24 AC 232 ms
76,308 KB
testcase_25 AC 306 ms
82,380 KB
testcase_26 AC 200 ms
81,852 KB
testcase_27 AC 158 ms
81,920 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    class UnionFind():
        def __init__(self, n):
            self.n = n
            self.root = [-1] * (n + 1)
            self.rnk = [0] * (n + 1)

        def find_root(self, x):
            while self.root[x] >= 0:
                x = self.root[x]
            return x

        def unite(self, x, y):
            x = self.find_root(x)
            y = self.find_root(y)
            if x == y:
                return
            elif self.rnk[x] > self.rnk[y]:
                self.root[x] += self.root[y]
                self.root[y] = x
            else:
                self.root[y] += self.root[x]
                self.root[x] = y
                if self.rnk[x] == self.rnk[y]:
                    self.rnk[y] += 1

        def isSameGroup(self, x, y):
            return self.find_root(x) == self.find_root(y)

        def size(self, x):
            return -self.root[self.find_root(x)]
    
    N, M = map(int, input().split())
    UF = UnionFind(N * 2)
    for _ in range(M):
        a, b = map(int, input().split())
        UF.unite(a, b + N)
        UF.unite(a + N, b)
    ok = 1
    for v in range(1, N + 1):
        if not UF.isSameGroup(v, v+N):
            ok = 0
            break
    if ok:
        print("Yes")
    else:
        print("No")


if __name__ == '__main__':
    main()
0