結果

問題 No.2289 順列ソート
ユーザー FromBooskaFromBooska
提出日時 2023-05-05 23:40:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 1,811 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-05-02 18:58:45
合計ジャッジ時間 2,354 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 49 ms
51,712 KB
testcase_02 AC 43 ms
52,480 KB
testcase_03 AC 46 ms
52,608 KB
testcase_04 AC 44 ms
51,968 KB
testcase_05 AC 46 ms
52,224 KB
testcase_06 AC 46 ms
52,096 KB
testcase_07 AC 43 ms
52,224 KB
testcase_08 AC 44 ms
52,480 KB
testcase_09 AC 43 ms
52,480 KB
testcase_10 AC 46 ms
52,480 KB
testcase_11 AC 45 ms
52,352 KB
testcase_12 AC 44 ms
52,096 KB
testcase_13 AC 44 ms
52,224 KB
testcase_14 AC 44 ms
52,224 KB
testcase_15 AC 44 ms
52,352 KB
testcase_16 AC 43 ms
51,968 KB
testcase_17 AC 43 ms
52,224 KB
testcase_18 AC 44 ms
52,352 KB
testcase_19 AC 43 ms
52,096 KB
testcase_20 AC 44 ms
52,224 KB
testcase_21 AC 44 ms
52,224 KB
testcase_22 AC 46 ms
52,224 KB
testcase_23 AC 45 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# これはわかる気がする
# 正しい場所と今ある数字をUF.uniteする
# 各groupのsize-1を総和
# なぜなら4個の数字が4個の間違った場所に入っていれば、3個を直せば全部戻る

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * 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 unite(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        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 len(self.roots())
 
    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members
 
    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

N = int(input())
P = list(map(int, input().split()))
UF = UnionFind(N+1)
for i in range(N):
    UF.unite(P[i], i+1)
    
#from collections import defaultdict
#print(UF.all_group_members())
    
ans = 0
for r in UF.roots():
    # root 0では次の計算は0になるので無視していい
    ans += UF.size(r)-1
print(ans)
0