結果

問題 No.2254 Reverse Only
ユーザー umezoumezo
提出日時 2023-03-24 23:37:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 214 ms / 2,000 ms
コード長 1,566 bytes
コンパイル時間 1,845 ms
コンパイル使用メモリ 209,884 KB
実行使用メモリ 28,288 KB
最終ジャッジ日時 2024-09-18 17:41:50
合計ジャッジ時間 8,263 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 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 1 ms
5,376 KB
testcase_08 AC 190 ms
24,960 KB
testcase_09 AC 199 ms
28,160 KB
testcase_10 AC 136 ms
24,960 KB
testcase_11 AC 200 ms
25,216 KB
testcase_12 AC 175 ms
24,960 KB
testcase_13 AC 179 ms
25,088 KB
testcase_14 AC 186 ms
25,088 KB
testcase_15 AC 214 ms
24,960 KB
testcase_16 AC 207 ms
28,260 KB
testcase_17 AC 207 ms
28,288 KB
testcase_18 AC 192 ms
25,088 KB
testcase_19 AC 182 ms
24,960 KB
testcase_20 AC 191 ms
28,104 KB
testcase_21 AC 184 ms
28,160 KB
testcase_22 AC 133 ms
28,240 KB
testcase_23 AC 150 ms
28,288 KB
testcase_24 AC 153 ms
28,136 KB
testcase_25 AC 155 ms
28,260 KB
testcase_26 AC 158 ms
28,288 KB
testcase_27 AC 4 ms
5,376 KB
testcase_28 AC 31 ms
7,936 KB
testcase_29 AC 68 ms
13,312 KB
testcase_30 AC 60 ms
12,032 KB
testcase_31 AC 30 ms
8,064 KB
testcase_32 AC 34 ms
8,960 KB
testcase_33 AC 15 ms
5,928 KB
testcase_34 AC 90 ms
16,256 KB
testcase_35 AC 54 ms
11,520 KB
testcase_36 AC 154 ms
21,760 KB
testcase_37 AC 173 ms
22,528 KB
testcase_38 AC 26 ms
7,040 KB
testcase_39 AC 146 ms
20,352 KB
testcase_40 AC 5 ms
5,376 KB
testcase_41 AC 48 ms
10,752 KB
testcase_42 AC 25 ms
7,424 KB
testcase_43 AC 110 ms
17,024 KB
testcase_44 AC 167 ms
23,552 KB
testcase_45 AC 99 ms
15,744 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;
typedef unsigned long long ull;
 
#include<bits/stdc++.h>
using namespace std;

const ull B1=1000000007;
const ull B2=100000007;

bool rolling_hush(vector<ll> &a, vector<ll> &b){
  int al=a.size(),bl=b.size();
  if(al>bl) return false;
  
  ull t1=1,t2=1;
  rep(i,al){
    t1*=B1;
    t2*=B2;
  }
  
  ull ah=0,bh=0,ch=0,dh=0;
  rep(i,al){
    ah=ah*B1+a[i];
    bh=bh*B1+b[i];
    ch=ch*B2+a[i];
    dh=dh*B2+b[i];
  }
  
  for(int i=0;i+al<=bl;i++){
    if(ah==bh && ch==dh) return true;
    if(i+al<bl){
      bh=bh*B1+b[i+al]-b[i]*t1;
      dh=dh*B2+b[i+al]-b[i]*t2;
    }
  }
  return false;
}

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);
 
  int n,k;
  cin>>n>>k;
  vector<ll> A(n),B(n);
  multiset<ll> 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;
  }
  
  vector<ll> AA(2*n);
  rep(i,n){
    AA[i]=A[i];
    AA[n+i]=A[i];
  }
  
  if(rolling_hush(B,AA)) cout<<"Yes"<<endl;
  else{
    reverse(ALL(B));
    if(rolling_hush(B,AA)) cout<<"Yes"<<endl;
    else cout<<"No"<<endl;
  }

  return 0;
}
0