結果

問題 No.2254 Reverse Only
ユーザー umezoumezo
提出日時 2023-03-24 23:20:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 2,119 ms
コンパイル使用メモリ 206,340 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-09-18 17:36:12
合計ジャッジ時間 9,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 288 ms
23,552 KB
testcase_09 WA -
testcase_10 AC 153 ms
23,552 KB
testcase_11 AC 241 ms
23,424 KB
testcase_12 AC 223 ms
23,552 KB
testcase_13 AC 226 ms
23,552 KB
testcase_14 AC 216 ms
23,552 KB
testcase_15 AC 246 ms
23,424 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 215 ms
23,424 KB
testcase_19 AC 203 ms
23,424 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 5 ms
5,376 KB
testcase_28 AC 35 ms
7,680 KB
testcase_29 AC 79 ms
12,672 KB
testcase_30 AC 73 ms
11,264 KB
testcase_31 AC 35 ms
7,936 KB
testcase_32 AC 41 ms
8,448 KB
testcase_33 AC 19 ms
5,760 KB
testcase_34 AC 109 ms
15,360 KB
testcase_35 AC 64 ms
11,008 KB
testcase_36 AC 197 ms
20,352 KB
testcase_37 AC 204 ms
21,120 KB
testcase_38 AC 27 ms
6,912 KB
testcase_39 AC 192 ms
19,200 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 58 ms
10,240 KB
testcase_42 AC 32 ms
7,216 KB
testcase_43 AC 119 ms
16,256 KB
testcase_44 AC 199 ms
22,272 KB
testcase_45 AC 113 ms
14,848 KB
testcase_46 AC 5 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;
 
#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
 
  int n,k;
  cin>>n>>k;
  vector<int> A(n),B(n);
  multiset<int> c,d;
  bool b=true;
  rep(i,n){
    cin>>A[i];
    c.insert(A[i]);
  }
  rep(i,n){
    cin>>B[i];
    if(B[i]!=A[i]) b=false;
    d.insert(B[i]);
  }
  
  if(b){
    cout<<"Yes"<<endl;
    return 0;
  }
  if(k>n || c!=d){
    cout<<"No"<<endl;
    return 0;
  }
  if(k==n){
    reverse(ALL(B));
    b=true;
    rep(i,n){
      if(A[i]!=B[i]) b=false;
      if(b) cout<<"Yes"<<endl;
      else cout<<"No"<<endl;
      return 0;
    }
  }
  if(k<n-1){
    cout<<"Yes"<<endl;
    return 0;
  }
  cout<<1<<endl;
  
  
  
  
   
  return 0;
}
0