結果

問題 No.482 あなたの名は
ユーザー k-matsk-mats
提出日時 2017-02-11 00:51:59
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 536 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 42,812 KB
最終ジャッジ日時 2024-12-29 11:40:53
合計ジャッジ時間 7,425 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 32 ms
10,752 KB
testcase_12 AC 34 ms
10,752 KB
testcase_13 AC 33 ms
10,752 KB
testcase_14 AC 32 ms
10,752 KB
testcase_15 AC 348 ms
42,688 KB
testcase_16 AC 340 ms
42,688 KB
testcase_17 AC 350 ms
42,588 KB
testcase_18 AC 349 ms
42,688 KB
testcase_19 AC 347 ms
42,684 KB
testcase_20 AC 369 ms
42,696 KB
testcase_21 AC 362 ms
42,692 KB
testcase_22 AC 361 ms
42,688 KB
testcase_23 AC 351 ms
42,696 KB
testcase_24 AC 354 ms
42,692 KB
testcase_25 AC 351 ms
42,680 KB
testcase_26 AC 343 ms
42,812 KB
testcase_27 AC 355 ms
42,560 KB
testcase_28 AC 340 ms
42,696 KB
testcase_29 AC 314 ms
41,668 KB
testcase_30 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = [int(i) for i in input().split()]
d = [int(i) - 1 for i in input().split()]

e = [0 for i in range(n)]
for i, d_i in enumerate(d):
    e[d_i] = i

used_indices = set()
swap_times = list()

for i in range(n):
    index = i
    swap_time = -1

    while index not in used_indices:
        used_indices.add(index)
        index = e[index]
        swap_time += 1

    if swap_time > 0:
        swap_times.append(swap_time)

total_swap_time = sum(swap_times)

if (k - total_swap_time) % 2 == 0:
    print('YES')
else:
    print('NO')
0