結果

問題 No.100 直列あみだくじ
ユーザー 👑 rin204rin204
提出日時 2022-06-30 18:59:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 1,578 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,784 KB
実行使用メモリ 54,168 KB
最終ジャッジ日時 2024-05-03 15:37:23
合計ジャッジ時間 3,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,940 KB
testcase_01 AC 40 ms
53,920 KB
testcase_02 AC 39 ms
54,168 KB
testcase_03 AC 39 ms
53,464 KB
testcase_04 AC 37 ms
52,516 KB
testcase_05 AC 36 ms
53,440 KB
testcase_06 AC 38 ms
53,132 KB
testcase_07 AC 38 ms
53,484 KB
testcase_08 AC 38 ms
52,600 KB
testcase_09 AC 38 ms
53,808 KB
testcase_10 AC 37 ms
53,972 KB
testcase_11 AC 37 ms
52,408 KB
testcase_12 AC 39 ms
52,344 KB
testcase_13 AC 37 ms
53,236 KB
testcase_14 AC 39 ms
53,604 KB
testcase_15 AC 37 ms
53,240 KB
testcase_16 AC 37 ms
53,956 KB
testcase_17 AC 38 ms
52,812 KB
testcase_18 AC 38 ms
53,564 KB
testcase_19 AC 38 ms
54,104 KB
testcase_20 AC 38 ms
53,200 KB
testcase_21 AC 38 ms
52,952 KB
testcase_22 AC 37 ms
53,208 KB
testcase_23 AC 38 ms
52,936 KB
testcase_24 AC 37 ms
53,572 KB
testcase_25 AC 38 ms
52,444 KB
testcase_26 AC 38 ms
53,544 KB
testcase_27 AC 37 ms
52,740 KB
testcase_28 AC 38 ms
52,804 KB
testcase_29 AC 38 ms
53,344 KB
testcase_30 AC 39 ms
53,136 KB
testcase_31 AC 38 ms
53,300 KB
testcase_32 AC 38 ms
53,516 KB
testcase_33 AC 37 ms
53,480 KB
testcase_34 AC 37 ms
54,112 KB
testcase_35 AC 37 ms
52,744 KB
testcase_36 AC 38 ms
54,056 KB
testcase_37 AC 39 ms
52,584 KB
testcase_38 AC 38 ms
53,572 KB
testcase_39 AC 38 ms
53,480 KB
testcase_40 AC 38 ms
52,580 KB
testcase_41 AC 38 ms
52,388 KB
testcase_42 AC 37 ms
52,936 KB
testcase_43 AC 38 ms
53,276 KB
testcase_44 AC 38 ms
54,040 KB
testcase_45 AC 37 ms
53,448 KB
testcase_46 AC 38 ms
53,748 KB
testcase_47 AC 38 ms
53,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    def find(self, 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 = self.find(x)
        y = self.find(y)

        if x == y:
            return
        self.group -= 1
        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):
        return -self.parents[self.find(x)]

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def members(self, 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 self.group

    def all_group_members(self):
        dic = {r:[] for r in self.roots()}
        for i in range(self.n):
            dic[self.find(i)].append(i)
        return dic

    def __str__(self):
        return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots())

n = int(input())
A = list(map(int, input().split()))
UF = UnionFind(n)
for i, a in enumerate(A):
    UF.union(i, a - 1)
cnt = {}
for r in UF.roots():
    s = UF.size(r)
    cnt[s] = cnt.get(s, 0) + 1

for c, v in cnt.items():
    if c & 1:
        pass
    elif v & 1:
        print("No")
        exit()
print("Yes")

0