結果

問題 No.482 あなたの名は
ユーザー k-matsk-mats
提出日時 2017-02-11 00:39:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 340 ms / 2,000 ms
コード長 458 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 42,968 KB
最終ジャッジ日時 2024-06-09 11:28:17
合計ジャッジ時間 6,809 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 30 ms
10,880 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 333 ms
42,836 KB
testcase_16 AC 332 ms
42,832 KB
testcase_17 AC 338 ms
42,956 KB
testcase_18 AC 334 ms
42,836 KB
testcase_19 AC 315 ms
42,828 KB
testcase_20 AC 331 ms
42,964 KB
testcase_21 AC 332 ms
42,832 KB
testcase_22 AC 337 ms
42,828 KB
testcase_23 AC 330 ms
42,844 KB
testcase_24 AC 332 ms
42,964 KB
testcase_25 AC 325 ms
42,952 KB
testcase_26 AC 340 ms
42,832 KB
testcase_27 AC 333 ms
42,960 KB
testcase_28 AC 335 ms
42,968 KB
testcase_29 AC 296 ms
41,684 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, 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