結果

問題 No.2202 贅沢てりたまチキン
ユーザー ThetaTheta
提出日時 2023-02-06 14:38:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,157 ms / 2,000 ms
コード長 1,415 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,824 KB
最終ジャッジ日時 2024-07-04 18:59:02
合計ジャッジ時間 15,286 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 27 ms
10,880 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 26 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 27 ms
10,880 KB
testcase_10 AC 68 ms
29,696 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 AC 26 ms
10,880 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 946 ms
29,696 KB
testcase_15 AC 996 ms
29,696 KB
testcase_16 AC 916 ms
29,824 KB
testcase_17 AC 1,002 ms
29,696 KB
testcase_18 AC 467 ms
20,224 KB
testcase_19 AC 510 ms
29,696 KB
testcase_20 AC 1,061 ms
29,696 KB
testcase_21 AC 1,006 ms
29,696 KB
testcase_22 AC 784 ms
10,752 KB
testcase_23 AC 813 ms
11,520 KB
testcase_24 AC 811 ms
11,008 KB
testcase_25 AC 1,157 ms
29,696 KB
testcase_26 AC 1,131 ms
29,824 KB
testcase_27 AC 1,005 ms
29,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(20000)


class UnionFindTree:
    def __init__(self, length: int) -> None:
        self.list = [idx for idx in range(length)]
        self.size = [1 for _ in range(length)]

    def get_root(self, idx: int) -> int:
        if self.list[idx] == idx:
            return idx
        self.list[idx] = self.get_root(self.list[idx])
        return self.list[idx]

    def is_same(self, idx1: int, idx2: int) -> bool:
        return self.get_root(idx1) == self.get_root(idx2)

    def merge(self, idx1: int, idx2: int):
        if self.is_same(idx1, idx2):
            return

        idx1_root = self.get_root(idx1)
        idx2_root = self.get_root(idx2)
        if self.size[idx1_root] > self.size[idx2_root]:
            self.list[idx2_root] = idx1_root
            self.size[idx1_root] += self.size[idx2_root]
        else:
            self.list[idx1_root] = idx2_root
            self.size[idx2_root] += self.size[idx1_root]

    def get_size(self, idx: int) -> int:
        return self.size[self.get_root(idx)]


def main():
    N, M = map(int, input().split())
    uft = UnionFindTree(2*N)
    for _ in range(M):
        A, B = map(lambda n: int(n)-1, input().split())
        uft.merge(A*2, B*2+1)
        uft.merge(B*2, A*2+1)
    if all(uft.is_same(idx*2, idx*2+1) for idx in range(N)):
        print("Yes")
    else:
        print("No")


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