結果

問題 No.482 あなたの名は
ユーザー momoyuumomoyuu
提出日時 2024-09-29 23:47:36
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 105,540 KB
実行使用メモリ 16,512 KB
最終ジャッジ日時 2024-09-29 23:47:41
合計ジャッジ時間 4,098 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 1 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 1 ms
5,248 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 1 ms
5,248 KB
testcase_08 AC 1 ms
5,248 KB
testcase_09 AC 1 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 1 ms
5,248 KB
testcase_15 AC 40 ms
16,476 KB
testcase_16 AC 39 ms
16,356 KB
testcase_17 AC 39 ms
16,512 KB
testcase_18 AC 38 ms
16,512 KB
testcase_19 AC 38 ms
16,384 KB
testcase_20 AC 38 ms
16,440 KB
testcase_21 AC 37 ms
16,384 KB
testcase_22 AC 38 ms
16,476 KB
testcase_23 AC 37 ms
16,512 KB
testcase_24 AC 43 ms
16,432 KB
testcase_25 AC 38 ms
16,384 KB
testcase_26 AC 38 ms
16,352 KB
testcase_27 AC 38 ms
16,404 KB
testcase_28 AC 39 ms
16,412 KB
testcase_29 AC 32 ms
14,900 KB
testcase_30 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>

using namespace std;
using ll = long long;

#include<atcoder/dsu>
int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    ll n,k;
    cin>>n>>k;
    vector<ll> d(n);
    for(int i = 0;i<n;i++) cin>>d[i];
    atcoder::dsu uf(n);
    for(int i = 0;i<n;i++) {
        d[i]--;
        uf.merge(i,d[i]);
    }
    ll need = 0;
    for(auto now:uf.groups()){
        need += now.size() - 1;
    }
    if(need<=k&&need%2==k%2){
        cout<<"YES\n";
    }else{
        cout<<"NO\n";
    }
}

0