結果
問題 | No.482 あなたの名は |
ユーザー | ikd |
提出日時 | 2017-02-10 23:03:53 |
言語 | C++11 (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 70 ms / 2,000 ms |
コード長 | 450 bytes |
コンパイル時間 | 786 ms |
コンパイル使用メモリ | 54,740 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-12-29 20:20:51 |
合計ジャッジ時間 | 2,925 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 28 |
ソースコード
#include<iostream> using namespace std; #define int long long signed main(){ int N, K; cin>> N>> K; int a[N]; for(int i=0; i<N; i++){ cin>> a[i]; a[i]--; } int r=0; for(int i=0; i<N; i++){ while(a[i]!=i){ swap(a[i], a[a[i]]); r++; } } if(r>K){ cout<< "NO"<< endl; }else if((K-r)%2){ cout<< "NO"<< endl; }else{ cout<< "YES"<< endl; } return 0; }