結果

問題 No.2254 Reverse Only
ユーザー 👑 kmjpkmjp
提出日時 2023-03-25 00:09:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 3,076 bytes
コンパイル時間 2,328 ms
コンパイル使用メモリ 215,740 KB
実行使用メモリ 16,720 KB
最終ジャッジ日時 2023-10-18 21:45:54
合計ジャッジ時間 8,339 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 43 ms
5,508 KB
testcase_09 RE -
testcase_10 AC 41 ms
4,716 KB
testcase_11 AC 43 ms
5,508 KB
testcase_12 AC 42 ms
5,508 KB
testcase_13 AC 42 ms
5,508 KB
testcase_14 AC 43 ms
5,508 KB
testcase_15 AC 42 ms
5,508 KB
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 44 ms
5,508 KB
testcase_19 AC 41 ms
4,860 KB
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 4 ms
4,392 KB
testcase_28 AC 11 ms
4,348 KB
testcase_29 AC 22 ms
4,716 KB
testcase_30 AC 19 ms
4,452 KB
testcase_31 AC 12 ms
4,348 KB
testcase_32 AC 13 ms
4,452 KB
testcase_33 AC 7 ms
4,472 KB
testcase_34 AC 26 ms
4,980 KB
testcase_35 AC 18 ms
4,452 KB
testcase_36 AC 37 ms
5,244 KB
testcase_37 AC 38 ms
5,244 KB
testcase_38 AC 10 ms
4,348 KB
testcase_39 AC 35 ms
5,244 KB
testcase_40 AC 4 ms
4,388 KB
testcase_41 AC 17 ms
4,452 KB
testcase_42 AC 11 ms
4,348 KB
testcase_43 AC 28 ms
4,980 KB
testcase_44 AC 39 ms
5,508 KB
testcase_45 AC 26 ms
4,980 KB
testcase_46 AC 4 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N,K;

vector<int> A,B;
int C[202020];

using VT = vector<int>;
struct RollingHash {
	static const ll mo0=1000000021,mo1=1000000009;
	static ll mul0,mul1;
	static const ll add0=1000010007, add1=1003333331;
	static vector<ll> pmo[2];
	VT s; int l; vector<ll> hash_[2];
	void init(VT s) {
		this->s=s; l=s.size(); int i,j;
		hash_[0]=hash_[1]=vector<ll>(1,0);
		if(!mul0) mul0=10009+(((ll)&mul0+time(NULL))>>5)%1259,mul1=10007+(time(NULL)+((ll)&mul1)>>5)%2257;
		if(pmo[0].empty()) pmo[0].push_back(1),pmo[1].push_back(1);
		FOR(i,l) hash_[0].push_back((hash_[0].back()*mul0+add0+s[i])%mo0);
		FOR(i,l) hash_[1].push_back((hash_[1].back()*mul1+add1+s[i])%mo1);
	}
	pair<ll,ll> hash(int l,int r) { // s[l..r]
		if(l>r) return make_pair(0,0);
		while(pmo[0].size()<r+2)
			pmo[0].push_back(pmo[0].back()*mul0%mo0), pmo[1].push_back(pmo[1].back()*mul1%mo1);
		return make_pair((hash_[0][r+1]+(mo0-hash_[0][l]*pmo[0][r+1-l]%mo0))%mo0,
			             (hash_[1][r+1]+(mo1-hash_[1][l]*pmo[1][r+1-l]%mo1))%mo1);
	}
	pair<ll,ll> hash(VT s) { init(s); return hash(0,s.size()-1); }
	static pair<ll,ll> concat(pair<ll,ll> L,pair<ll,ll> R,int RL) { // hash(L+R) RL=len-of-R
		while(pmo[0].size()<RL+2) pmo[0].push_back(pmo[0].back()*mul0%mo0), pmo[1].push_back(pmo[1].back()*mul1%mo1);
		return make_pair((R.first + L.first*pmo[0][RL])%mo0,(R.second + L.second*pmo[1][RL])%mo1);
	}
};
vector<ll> RollingHash::pmo[2]; ll RollingHash::mul0,RollingHash::mul1;
RollingHash rh;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N>>K;
	A.resize(N);
	B.resize(N);
	FOR(i,N) {
		cin>>A[i];
		C[A[i]]++;
	}
	FOR(i,N) {
		cin>>B[i];
		C[B[i]]--;
	}
	FOR(i,N) if(A[i]!=B[i]) break;
	if(i==N) {
		cout<<"Yes"<<endl;
		return;
	}
	FOR(i,202020) if(C[i]) {
		cout<<"No"<<endl;
		return;
	}
	if(K>N) {
		cout<<"No"<<endl;
	}
	else if(K==N) {
		FOR(i,N) if(A[i]!=B[N-1-i]) break;
		if(i==N) {
			cout<<"Yes"<<endl;
		}
		else {
			cout<<"No"<<endl;
		}
	}
	else if(K==N-1) {
		auto a=rh.hash(A);
		reverse(ALL(A));
		auto b=rh.hash(A);
		rh.init(B);
		FOR(i,N) {
			auto x=rh.hash(i,N-1);
			if(i) {
				auto y=rh.hash(0,i-1);
				x=rh.concat(y,x,i+1);
			}
			if(x==a||x==b) {
				cout<<"Yes"<<endl;
				return;
			}
		}
		cout<<"No"<<endl;
		assert(0);
	}
	else {
		cout<<"Yes"<<endl;
		
		
	}
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0