結果

問題 No.482 あなたの名は
ユーザー nanaenanae
提出日時 2017-03-23 06:02:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,164 KB
最終ジャッジ日時 2024-07-05 20:22:25
合計ジャッジ時間 5,407 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,624 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 WA -
testcase_14 AC 28 ms
10,624 KB
testcase_15 AC 212 ms
30,160 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 205 ms
30,160 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 213 ms
30,032 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 209 ms
30,160 KB
testcase_28 AC 210 ms
30,160 KB
testcase_29 AC 215 ms
30,156 KB
testcase_30 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
D = [int(i) - 1 for i in input().split()]
visited = [False] * N
min_change = 0

for i in range(N):
    if visited[i]:
        continue

    visited[i] = True
    cycle_l = 0

    while not visited[D[i]]:
        i = D[i]
        visited[D[i]] = True
        cycle_l += 1

    min_change += cycle_l

if min_change <= K and not((K - min_change) % 2):
    print('YES')
else:
    print('NO')
0