結果

問題 No.482 あなたの名は
ユーザー k-matsk-mats
提出日時 2017-02-11 00:39:43
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 355 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 43,096 KB
最終ジャッジ日時 2024-12-29 20:25:46
合計ジャッジ時間 7,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 29 ms
11,008 KB
testcase_12 AC 31 ms
10,880 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 30 ms
10,880 KB
testcase_15 AC 355 ms
42,908 KB
testcase_16 AC 343 ms
43,004 KB
testcase_17 AC 346 ms
42,976 KB
testcase_18 AC 342 ms
43,096 KB
testcase_19 AC 340 ms
43,060 KB
testcase_20 AC 348 ms
42,948 KB
testcase_21 AC 349 ms
42,968 KB
testcase_22 AC 342 ms
43,088 KB
testcase_23 AC 350 ms
42,972 KB
testcase_24 AC 346 ms
43,036 KB
testcase_25 AC 352 ms
43,092 KB
testcase_26 AC 351 ms
42,840 KB
testcase_27 AC 355 ms
42,888 KB
testcase_28 AC 352 ms
42,836 KB
testcase_29 AC 319 ms
41,812 KB
testcase_30 AC 31 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, dd in enumerate(d):
    e[dd] = i

used_indices = set()
hoge = list()

for i in range(n):
    x = i
    y = 0

    while x not in used_indices:
        used_indices.add(x)
        x = e[x]
        y += 1
    if y > 0:
        hoge.append(y)

x = sum(a - 1 for a in hoge)

if x % 2 == k % 2 and x <= k:
    print('YES')
else:
    print('NO')
0