結果

問題 No.482 あなたの名は
ユーザー FromBooskaFromBooska
提出日時 2023-03-18 08:23:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 3,291 ms
コンパイル使用メモリ 81,648 KB
実行使用メモリ 125,220 KB
最終ジャッジ日時 2023-10-18 17:07:18
合計ジャッジ時間 4,844 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,520 KB
testcase_01 AC 36 ms
53,520 KB
testcase_02 AC 37 ms
53,520 KB
testcase_03 AC 36 ms
53,520 KB
testcase_04 AC 37 ms
53,520 KB
testcase_05 AC 37 ms
53,520 KB
testcase_06 AC 37 ms
53,520 KB
testcase_07 AC 34 ms
53,520 KB
testcase_08 AC 38 ms
53,520 KB
testcase_09 AC 37 ms
53,520 KB
testcase_10 AC 37 ms
53,520 KB
testcase_11 AC 37 ms
53,520 KB
testcase_12 AC 38 ms
53,520 KB
testcase_13 AC 38 ms
53,520 KB
testcase_14 AC 37 ms
53,520 KB
testcase_15 AC 137 ms
125,204 KB
testcase_16 AC 133 ms
125,220 KB
testcase_17 AC 130 ms
125,220 KB
testcase_18 AC 132 ms
125,220 KB
testcase_19 AC 133 ms
125,220 KB
testcase_20 AC 134 ms
125,220 KB
testcase_21 AC 134 ms
125,220 KB
testcase_22 AC 134 ms
125,220 KB
testcase_23 AC 135 ms
125,220 KB
testcase_24 AC 133 ms
125,220 KB
testcase_25 AC 133 ms
125,220 KB
testcase_26 AC 132 ms
125,220 KB
testcase_27 AC 128 ms
125,220 KB
testcase_28 AC 135 ms
125,220 KB
testcase_29 AC 122 ms
125,220 KB
testcase_30 AC 37 ms
53,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 必要最低回数+偶数==KならOKか

N, K = map(int, input().split())
D = [0]+list(map(int, input().split()))
dic = {}
for i in range(N+1):
    dic[D[i]] = i

mn = 0
for i in range(1, N+1):
    if D[i] != i:
        correct = dic[i]
        dic[i] = i
        dic[D[i]] = correct
        D[i], D[correct] = D[correct], D[i]
        mn += 1
    #print(mn, D, dic)
    
if K >= mn and (K-mn)%2 == 0:
    print('YES')
else:
    print('NO')

0