結果

問題 No.482 あなたの名は
ユーザー nmnmnmnmnmnmnmnmnmnmnmnmnmnm
提出日時 2017-02-10 23:30:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,497 bytes
コンパイル時間 595 ms
コンパイル使用メモリ 89,664 KB
実行使用メモリ 9,680 KB
最終ジャッジ日時 2024-06-09 11:26:25
合計ジャッジ時間 2,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,656 KB
testcase_01 AC 3 ms
6,528 KB
testcase_02 AC 2 ms
6,656 KB
testcase_03 AC 3 ms
6,656 KB
testcase_04 AC 2 ms
6,656 KB
testcase_05 AC 3 ms
6,656 KB
testcase_06 AC 3 ms
6,656 KB
testcase_07 AC 3 ms
6,656 KB
testcase_08 AC 3 ms
6,656 KB
testcase_09 AC 2 ms
6,656 KB
testcase_10 AC 3 ms
6,656 KB
testcase_11 AC 3 ms
6,528 KB
testcase_12 AC 3 ms
6,656 KB
testcase_13 AC 3 ms
6,528 KB
testcase_14 AC 3 ms
6,400 KB
testcase_15 AC 61 ms
9,420 KB
testcase_16 AC 61 ms
9,552 KB
testcase_17 AC 60 ms
9,444 KB
testcase_18 AC 59 ms
9,680 KB
testcase_19 AC 59 ms
9,552 KB
testcase_20 AC 60 ms
9,572 KB
testcase_21 AC 60 ms
9,420 KB
testcase_22 AC 60 ms
9,476 KB
testcase_23 AC 60 ms
9,476 KB
testcase_24 AC 59 ms
9,424 KB
testcase_25 AC 58 ms
9,420 KB
testcase_26 AC 61 ms
9,604 KB
testcase_27 AC 61 ms
9,420 KB
testcase_28 AC 60 ms
9,444 KB
testcase_29 AC 58 ms
9,620 KB
testcase_30 AC 2 ms
6,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cfloat>
#include <climits>
#include <cmath>
#include <complex>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <functional>
#include <iostream>
#include <map>
#include <memory>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <utility>
#include <vector>

using namespace std;

typedef long long ll;

#define sz size()
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define all(c) (c).begin(), (c).end()
#define rep(i,a,b) for(ll i=(a);i<(b);++i)
#define per(i,a,b) for(ll i=(b-1);i>=(a);--i)
#define clr(a, b) memset((a), (b) ,sizeof(a))
#define ctos(c) string(1,c)
#define print(x) cout<<#x<<" = "<<x<<endl;

#define MOD 1000000007

ll d[200010];
ll dd[200010];
ll ddd[200010];

int main() {
  ll n,k;
  cin>>n>>k;
  vector<ll> v;
  rep(i,0,n){
    ll a;
    cin>>a;
    a--;
    v.pb(a);
  }
  rep(i,0,v.sz){
    d[v[i]] = i; 
  }
  clr(dd,0);
  int index = 1;
  rep(i,0,n){
    if(dd[i]!=0)continue;
    if(d[i]==i){
      dd[i]=index;
      index++;
      continue;;
    }
    ll a = i;
    while(1){
      dd[a] = index;
      a = d[a];
      if(a==i){
        index++;
        break;
      }
    }
  }
  clr(ddd,0);
  rep(i,0,n){
    ddd[dd[i]]++;
  }
  ll ans = 0;
  rep(i,0,n+1){
    ans += max(0LL,ddd[i]-1);
  }
  if(ans>k){
    cout << "NO" << endl;
  }
  else if((k-ans)%2==1){
    cout << "NO" << endl;
  }
  else{
    cout << "YES" << endl;
  }
  return 0;
}
0