結果

問題 No.482 あなたの名は
ユーザー face4face4
提出日時 2018-05-05 18:01:19
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 683 bytes
コンパイル時間 624 ms
コンパイル使用メモリ 63,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-28 01:59:05
合計ジャッジ時間 3,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

typedef long long ll;

int D[200001];

int main()
{
    int n;
    ll k;
    cin >> n >> k;
    for (int i = 1; i <= n; i++)
        cin >> D[i];
    ll counts = 0;
    for (int i = 1; i <= n; i++)
    {
        if (i != D[i])
        {
            int indextmp = D[i];
            while (indextmp != i)
            {
                int tmp = D[indextmp];
                D[indextmp] = indextmp;
                counts++;
                indextmp = tmp;
            }
        }
    }

    if (counts > k || (k - counts) % 2 == 1)
    {
        cout << "NO" << endl;
    }
    else
    {
        cout << "YES" << endl;
    }

    return 0;
}
0