結果

問題 No.482 あなたの名は
ユーザー runomrunom
提出日時 2017-02-10 23:11:21
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 61,708 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-29 20:21:00
合計ジャッジ時間 2,767 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <vector>
using namespace std;

int main() {
    int64_t n, k;
    cin >> n >> k;

    vector<int> d(n);
    vector<int> e(n);
    for (int i = 0; i < n; i++) {
        cin >> d[i];
        d[i]--;
        e[d[i]] = i;
    }

    for (int i = 0; i < n; i++) {
        if (d[i] != i) {
            k--;
            int j = e[i];
            swap(e[i], e[d[i]]);
            swap(d[i], d[j]);
        }
    }
    if (k < 0) {
        cout << "NO" << endl;
    } else if (k % 2 == 0) {
        cout << "YES" << endl;
    } else {
        cout << "NO" << endl;
    }
}
0