結果

問題 No.482 あなたの名は
ユーザー titiatitia
提出日時 2023-06-05 01:28:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 880 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,508 KB
最終ジャッジ日時 2024-06-09 04:14:10
合計ジャッジ時間 6,814 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,624 KB
testcase_01 AC 26 ms
10,368 KB
testcase_02 AC 24 ms
10,496 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 24 ms
10,496 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,368 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 25 ms
10,496 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 25 ms
10,496 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 26 ms
10,752 KB
testcase_14 AC 25 ms
10,624 KB
testcase_15 AC 307 ms
29,508 KB
testcase_16 AC 300 ms
29,360 KB
testcase_17 AC 316 ms
29,352 KB
testcase_18 AC 305 ms
29,496 KB
testcase_19 AC 332 ms
29,372 KB
testcase_20 AC 303 ms
29,372 KB
testcase_21 AC 304 ms
29,372 KB
testcase_22 AC 299 ms
29,496 KB
testcase_23 AC 314 ms
29,376 KB
testcase_24 AC 324 ms
29,500 KB
testcase_25 AC 308 ms
29,496 KB
testcase_26 AC 306 ms
29,376 KB
testcase_27 AC 309 ms
29,368 KB
testcase_28 AC 303 ms
29,216 KB
testcase_29 AC 295 ms
29,492 KB
testcase_30 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
D=list(map(int,input().split()))
for i in range(N):
    D[i]-=1

# UnionFind

Group = [i for i in range(N)] # グループ分け
Nodes = [1]*(N) # 各グループのノードの数

def find(x):
    while Group[x] != x:
        x=Group[x]
    return x

def Union(x,y):
    if find(x) != find(y):
        if Nodes[find(x)] < Nodes[find(y)]:
            
            Nodes[find(y)] += Nodes[find(x)]
            Nodes[find(x)] = 0
            Group[find(x)] = find(y)
            
        else:
            Nodes[find(x)] += Nodes[find(y)]
            Nodes[find(y)] = 0
            Group[find(y)] = find(x)

for i in range(N):
    Union(i,D[i])

X=[]
for i in range(N):
    if find(i)==i:
        X.append(Nodes[i])

ANS=0
for x in X:
    ANS+=x-1

if ANS<=K and ANS%2==K%2:
    print("YES")
else:
    print("NO")
0