結果

問題 No.482 あなたの名は
ユーザー imulanimulan
提出日時 2017-02-12 04:19:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 179 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,708 KB
最終ジャッジ日時 2024-06-09 11:33:57
合計ジャッジ時間 3,658 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 25 ms
10,624 KB
testcase_10 AC 26 ms
10,624 KB
testcase_11 AC 26 ms
10,752 KB
testcase_12 AC 26 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 27 ms
10,752 KB
testcase_15 AC 149 ms
29,456 KB
testcase_16 AC 150 ms
29,456 KB
testcase_17 AC 147 ms
29,580 KB
testcase_18 AC 144 ms
29,584 KB
testcase_19 AC 149 ms
29,580 KB
testcase_20 AC 146 ms
29,708 KB
testcase_21 AC 137 ms
29,580 KB
testcase_22 AC 143 ms
29,456 KB
testcase_23 AC 145 ms
29,456 KB
testcase_24 AC 140 ms
29,580 KB
testcase_25 AC 140 ms
29,452 KB
testcase_26 AC 149 ms
29,452 KB
testcase_27 AC 146 ms
29,588 KB
testcase_28 AC 179 ms
29,456 KB
testcase_29 AC 130 ms
29,384 KB
testcase_30 AC 27 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n,k = map(int,input().split())
    d = list(map(int,input().split()))

    f = [-1 for _ in range(n)]

    for i in range(n):
        d[i] -= 1
        f[d[i]] = i

    ct = 0
    for i in range(n):
        if d[i] == i:
            continue

        x,y = i,f[i]
        d[x],d[y] = d[y],d[x]
        f[d[x]],f[d[y]] = x,y
        ct += 1

    if ct > k:
        return 'NO'

    return 'YES' if (k-ct)%2 == 0 else 'NO'

if __name__ == '__main__':
    print(main())
0