結果

問題 No.482 あなたの名は
ユーザー FromBooskaFromBooska
提出日時 2023-09-25 12:35:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 2,000 ms
コード長 1,701 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,456 KB
実行使用メモリ 108,404 KB
最終ジャッジ日時 2024-07-18 10:01:40
合計ジャッジ時間 4,457 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,580 KB
testcase_01 AC 31 ms
52,872 KB
testcase_02 AC 33 ms
52,740 KB
testcase_03 AC 32 ms
52,524 KB
testcase_04 AC 31 ms
53,580 KB
testcase_05 AC 31 ms
53,700 KB
testcase_06 AC 31 ms
52,660 KB
testcase_07 AC 39 ms
59,572 KB
testcase_08 AC 35 ms
59,584 KB
testcase_09 AC 33 ms
52,820 KB
testcase_10 AC 35 ms
58,628 KB
testcase_11 AC 41 ms
60,292 KB
testcase_12 AC 39 ms
59,576 KB
testcase_13 AC 39 ms
59,236 KB
testcase_14 AC 39 ms
58,336 KB
testcase_15 AC 143 ms
108,232 KB
testcase_16 AC 134 ms
107,516 KB
testcase_17 AC 135 ms
107,624 KB
testcase_18 AC 132 ms
108,012 KB
testcase_19 AC 131 ms
107,648 KB
testcase_20 AC 126 ms
108,344 KB
testcase_21 AC 131 ms
107,904 KB
testcase_22 AC 131 ms
107,884 KB
testcase_23 AC 133 ms
107,648 KB
testcase_24 AC 134 ms
107,580 KB
testcase_25 AC 132 ms
108,044 KB
testcase_26 AC 145 ms
107,648 KB
testcase_27 AC 137 ms
108,404 KB
testcase_28 AC 129 ms
107,904 KB
testcase_29 AC 91 ms
107,648 KB
testcase_30 AC 32 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UF group size-1の和が必要回数、Kが必要回数以上で(K-必要回数)%2==0ならYes

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, K = map(int, input().split())
UF = UnionFind(N)
D = list(map(int, input().split()))
for i in range(N):
    d = D[i]-1
    if UF.same(i, d) == False:
        UF.unite(i, d)
        
required = 0
for root in UF.roots():
    required += UF.size(root)-1
if K >= required and (K-required)%2 == 0:
    print('YES')
else:
    print('NO')
0