結果

問題 No.482 あなたの名は
ユーザー hedwig100hedwig100
提出日時 2020-07-04 16:44:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 29,712 KB
最終ジャッジ日時 2024-09-19 04:28:18
合計ジャッジ時間 5,237 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 29 ms
10,624 KB
testcase_12 AC 29 ms
10,752 KB
testcase_13 AC 28 ms
10,752 KB
testcase_14 AC 33 ms
10,624 KB
testcase_15 AC 174 ms
29,584 KB
testcase_16 AC 167 ms
29,584 KB
testcase_17 AC 173 ms
29,584 KB
testcase_18 AC 171 ms
29,708 KB
testcase_19 AC 167 ms
29,464 KB
testcase_20 AC 169 ms
29,460 KB
testcase_21 AC 177 ms
29,584 KB
testcase_22 AC 176 ms
29,580 KB
testcase_23 AC 177 ms
29,444 KB
testcase_24 AC 174 ms
29,556 KB
testcase_25 AC 173 ms
29,712 KB
testcase_26 AC 175 ms
29,584 KB
testcase_27 AC 166 ms
29,456 KB
testcase_28 AC 159 ms
29,580 KB
testcase_29 AC 137 ms
29,584 KB
testcase_30 AC 27 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10000000)
MOD = 10 ** 9 + 7
INF = 10 ** 15

def main():
    N,K = map(int,input().split())
    D = list(map(int,input().split()))
    D = [d - 1 for d in D]
    idx = [-1] * N
    for i,d in enumerate(D):
        idx[d] = i
    
    min_cnt = 0
    for i in range(N):
        if idx[i] == i:
            continue
        idx[D[i]] = idx[i]
        D[idx[i]] = D[i]
        D[i] = i
        idx[i] = i
        min_cnt += 1
    print('YES' if (K - min_cnt)%2 == 0 and K - min_cnt >= 0 else 'NO')
if __name__ == '__main__':
    main()
0