結果

問題 No.482 あなたの名は
ユーザー 👑 rin204rin204
提出日時 2022-01-20 01:28:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,513 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,544 KB
最終ジャッジ日時 2024-05-02 20:06:04
合計ジャッジ時間 4,726 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 WA -
testcase_02 AC 41 ms
52,096 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 41 ms
52,352 KB
testcase_06 WA -
testcase_07 AC 48 ms
58,752 KB
testcase_08 AC 47 ms
57,728 KB
testcase_09 AC 41 ms
52,480 KB
testcase_10 AC 48 ms
57,984 KB
testcase_11 AC 47 ms
58,624 KB
testcase_12 AC 49 ms
58,496 KB
testcase_13 AC 47 ms
57,600 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 159 ms
107,904 KB
testcase_18 AC 162 ms
107,776 KB
testcase_19 WA -
testcase_20 AC 156 ms
107,520 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 159 ms
108,032 KB
testcase_25 AC 156 ms
107,648 KB
testcase_26 AC 153 ms
107,776 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 116 ms
107,904 KB
testcase_30 AC 41 ms
52,352 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, k = map(int, input().split())
D = list(map(int, input().split()))
UF = UnionFind(n)
for i, d in enumerate(D):
    UF.union(i, d - 1)

ans = 0
for r in UF.roots():
    ans += UF.size(r) - 1

if ans <= k:
    print("YES")
else:
    print("NO")
    

0