結果

問題 No.482 あなたの名は
ユーザー roarisroaris
提出日時 2019-08-03 11:38:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 432 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 40,984 KB
最終ジャッジ日時 2024-07-05 08:36:23
合計ジャッジ時間 5,646 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 31 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 28 ms
10,752 KB
testcase_12 AC 28 ms
10,752 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 29 ms
10,752 KB
testcase_15 AC 253 ms
40,868 KB
testcase_16 AC 266 ms
40,968 KB
testcase_17 AC 269 ms
40,676 KB
testcase_18 AC 265 ms
40,896 KB
testcase_19 AC 265 ms
40,764 KB
testcase_20 AC 261 ms
40,756 KB
testcase_21 AC 262 ms
40,892 KB
testcase_22 AC 269 ms
40,684 KB
testcase_23 AC 254 ms
40,820 KB
testcase_24 AC 260 ms
40,872 KB
testcase_25 AC 264 ms
40,924 KB
testcase_26 AC 257 ms
40,764 KB
testcase_27 AC 265 ms
40,808 KB
testcase_28 AC 263 ms
40,984 KB
testcase_29 AC 254 ms
40,864 KB
testcase_30 AC 28 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

N, K = map(int, input().split())
D = list(map(int, input().split()))
position = defaultdict(int)
cnt = 0

for i in range(N):
    position[D[i]] = i

for i in range(N):
    if D[i] == i + 1:
        continue
    D[position[i+1]] = D[i]
    position[D[i]] = position[i+1]
    D[i] = i + 1
    position[i+1] = i
    cnt += 1

if cnt > K or (K - cnt) % 2 == 1:
    print('NO')
else:
    print('YES')
0