結果
| 問題 | No.482 あなたの名は |
| コンテスト | |
| ユーザー |
taba
|
| 提出日時 | 2017-05-18 03:55:11 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 511 bytes |
| 記録 | |
| コンパイル時間 | 1,200 ms |
| コンパイル使用メモリ | 101,336 KB |
| 最終ジャッジ日時 | 2025-01-05 00:21:23 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 14 WA * 14 |
ソースコード
#include <cstdio>
#include <cstring>
#include <random>
#include <vector>
#include <algorithm>
#include <array>
#include <functional>
#include <utility>
using namespace std;
int main(){
int n,w=0;
int64_t k;
int _=scanf("%d%ld",&n,&k);
vector<int> d;
for(int i=1;i<=n;i++){
int t;
_=scanf("%d",&t);
d.push_back(t-1);
}
auto end=d.end();
for(auto i=0;i<n;i++){
auto l=d[i];
if(i!=l){
swap(d[i],d[l]);
w++;
}
}
puts(w<=k&&((w^k)&1)?"NO":"YES");
//printf("%d %ld\n",w,k);
return 0;
}
taba