結果

問題 No.482 あなたの名は
ユーザー yomo3yomo3
提出日時 2020-04-06 16:24:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 264 ms / 2,000 ms
コード長 655 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 33,424 KB
最終ジャッジ日時 2024-07-06 12:28:41
合計ジャッジ時間 6,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,624 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 26 ms
10,496 KB
testcase_05 AC 26 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 26 ms
10,624 KB
testcase_08 AC 27 ms
10,880 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 25 ms
10,624 KB
testcase_11 AC 25 ms
10,880 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 27 ms
10,624 KB
testcase_15 AC 258 ms
33,296 KB
testcase_16 AC 240 ms
33,284 KB
testcase_17 AC 263 ms
33,288 KB
testcase_18 AC 257 ms
33,408 KB
testcase_19 AC 253 ms
33,424 KB
testcase_20 AC 264 ms
33,168 KB
testcase_21 AC 263 ms
33,156 KB
testcase_22 AC 252 ms
33,156 KB
testcase_23 AC 242 ms
33,184 KB
testcase_24 AC 237 ms
33,288 KB
testcase_25 AC 239 ms
33,408 KB
testcase_26 AC 247 ms
33,152 KB
testcase_27 AC 249 ms
33,404 KB
testcase_28 AC 238 ms
33,420 KB
testcase_29 AC 210 ms
32,260 KB
testcase_30 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:
    def __init__(self, n):
        self.parent = [i for i in range(n)]
    def find(self, x):
        if self.parent[x] == x:
            return x
        self.parent[x] = self.find(self.parent[x])
        return self.parent[x]
    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        self.parent[x] = y

N, K = map(int, input().split())
D = list(map(int, input().split()))

uf = UnionFind(N + 1)

for i in range(N):
    uf.union(i + 1, D[i])

s = set(uf.find(i) for i in range(1, N + 1))
cnt = N - len(s)

yes = cnt <= K and cnt % 2 == K % 2
print('YES' if yes else 'NO')
0