QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#943845#10041. Periodic SequenceBreakPlusAC ✓29ms27092kbC++142.0kb2025-03-20 07:32:362025-03-20 07:32:37

Judging History

This is the latest submission verdict.

  • [2025-03-20 07:32:37]
  • Judged
  • Verdict: AC
  • Time: 29ms
  • Memory: 27092kb
  • [2025-03-20 07:32:36]
  • Submitted

answer

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef pair<ll,ll> P;
#define fi first
#define se second
#define mkp make_pair
#define pb emplace_back
#define popcnt __builtin_popcountll
inline ll read(){
	ll x=0, f=1; char ch=getchar();
	while(ch<'0' || ch>'9') { if(ch=='-') f=-1; ch=getchar(); }
	while(ch>='0' && ch<='9') x=x*10+ch-'0', ch=getchar();
	return x*f;
}
inline int lg2(int x){ return 31^__builtin_clz(x); }
inline ll lg2(ll x){ return 63^__builtin_clzll(x); }
int n,m,a[500005],b[500005],fa[500005],fb[500005];
mt19937_64 rnd(chrono::steady_clock::now().time_since_epoch().count());
ll rng(ll x,ll y){ return x+rnd()%(y-x+1); }
const ll mod = (ll)1e18 + 3, base = rng(5e7, 1e8);
ll hsh[1000005], pw[1000005];

inline ll gethsh(int l,int r){
	return (hsh[r] + (__int128)(mod-hsh[l-1]) * pw[r-l+1]) % mod;
}
void procedure(){
	n=read(),m=read();
	for(int i=1;i<=n;i++) a[i]=read();
	for(int i=1;i<=m;i++) b[i]=read();

	for(int i=2;i<=n;i++){
		fa[i]=fa[i-1];
		while(fa[i] && a[1+fa[i]] != a[i]) fa[i]=fa[fa[i]];
		if(a[1+fa[i]] == a[i]) ++fa[i];
	}
	for(int i=2;i<=m;i++){
		fb[i]=fb[i-1];
		while(fb[i] && b[1+fb[i]] != b[i]) fb[i]=fb[fb[i]];
		if(b[1+fb[i]] == b[i]) ++fb[i];
	}

	if(n%(n-fa[n])==0) n-=fa[n];
	if(m%(m-fb[m])==0) m-=fb[m];

	// cout<<"n = "<<n<<" m = "<<m<<endl;

	if(n!=m){
		puts("No");
		return;
	}


	for(int i=n+1;i<2*n;i++) b[i]=b[i-n];
	pw[0]=1;
	for(int i=1;i<2*n;i++)
		pw[i]=(__int128)pw[i-1]*base%mod;
	for(int i=1;i<2*n;i++)
		hsh[i]=((__int128)hsh[i-1]*base+b[i])%mod;

	ll st=0;
	for(int i=1;i<=n;i++)
		st=((__int128)st*base+a[i])%mod;

	for(int i=1;i<=n;i++){
		if(gethsh(i,i+n-1)==st){
			puts("Yes");
			return;
		}
	}
	puts("No");
}
int main(){
	#ifdef LOCAL
		assert(freopen("input.txt","r",stdin));
		assert(freopen("output.txt","w",stdout));
	#endif
	ll T=1;
	// math_init();
	// NTT::init();
	while(T--) procedure();
	return 0;
}

詳細信息

Test #1:

score: 100
Accepted
time: 0ms
memory: 9736kb

input:

6 3
1 5 6 1 5 6
6 1 5

output:

Yes

result:

ok answer is YES

Test #2:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

7 3
1 5 6 1 5 6 7
5 6 7

output:

No

result:

ok answer is NO

Test #3:

score: 0
Accepted
time: 0ms
memory: 7760kb

input:

2 3
3 3
3 3 3

output:

Yes

result:

ok answer is YES

Test #4:

score: 0
Accepted
time: 0ms
memory: 9784kb

input:

3 2
3 3 3
3 3

output:

Yes

result:

ok answer is YES

Test #5:

score: 0
Accepted
time: 1ms
memory: 9592kb

input:

27 81
3 3 9 6 5 8 3 8 7 0 6 3 2 0 5 1 0 5 9 0 3 6 8 1 1 3 5
3 9 6 5 8 3 8 7 0 6 3 2 0 5 1 0 5 9 0 3 6 8 1 1 3 5 3 3 9 6 5 8 3 8 7 0 6 3 2 0 5 1 0 5 9 0 3 6 8 1 1 3 5 3 3 9 6 5 8 3 8 7 0 6 3 2 0 5 1 0 5 9 0 3 6 8 1 1 3 5 3

output:

Yes

result:

ok answer is YES

Test #6:

score: 0
Accepted
time: 0ms
memory: 9736kb

input:

42 42
8 1 3 2 8 0 1 1 9 2 4 8 9 2 8 1 3 2 8 0 1 1 9 2 4 8 9 2 8 1 3 2 8 0 1 1 9 2 4 8 9 2
3 2 8 0 1 1 9 2 4 8 9 2 8 1 3 2 8 0 1 1 9 2 4 8 9 2 8 1 3 2 8 0 1 1 9 2 4 8 9 2 8 1

output:

Yes

result:

ok answer is YES

Test #7:

score: 0
Accepted
time: 0ms
memory: 9748kb

input:

55 22
3 9 5 8 5 2 4 6 4 3 9 3 9 5 8 5 2 4 6 4 3 9 3 9 5 8 5 2 4 6 4 3 9 3 9 5 8 5 2 4 6 4 3 9 3 9 5 8 5 2 4 6 4 3 9
4 6 4 3 9 3 9 5 8 5 2 4 6 4 3 9 3 9 5 8 5 2

output:

Yes

result:

ok answer is YES

Test #8:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

27 81
9 6 8 1 4 2 3 2 6 0 6 0 1 2 0 0 8 8 0 9 2 7 5 9 1 7 2
2 7 5 9 1 7 2 9 6 1 1 4 2 3 2 6 0 6 0 1 2 0 0 8 8 0 9 2 7 5 9 1 7 2 9 6 1 1 4 2 3 2 6 0 6 0 1 2 0 0 8 8 0 9 2 7 5 9 1 7 2 9 6 1 4 4 2 3 2 6 0 6 0 1 2 0 0 8 8 0 9

output:

No

result:

ok answer is NO

Test #9:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

69 69
9 0 6 7 3 4 8 0 7 1 5 3 7 4 0 7 8 9 2 4 3 6 9 9 0 6 8 3 4 8 0 7 1 5 3 7 4 0 7 8 9 2 4 3 6 9 9 0 6 7 3 4 8 0 7 1 5 3 7 4 0 7 8 9 2 4 3 6 9
4 0 7 8 9 2 4 3 6 9 9 0 6 7 3 4 8 0 7 1 5 3 7 4 0 7 8 9 2 4 3 6 9 9 0 6 7 3 4 8 0 7 1 5 3 7 4 0 7 8 9 2 4 8 6 9 9 0 6 7 3 4 8 0 7 1 5 3 7

output:

No

result:

ok answer is NO

Test #10:

score: 0
Accepted
time: 5ms
memory: 11592kb

input:

63088 63088
2 1 1 0 9 4 3 0 1 0 7 0 2 8 6 9 8 9 5 1 5 1 0 7 7 1 5 0 9 0 4 1 3 3 7 6 2 8 3 2 2 6 7 6 9 8 7 3 8 3 1 4 0 7 8 3 7 2 6 1 1 3 4 9 1 2 3 1 1 6 4 7 5 7 1 2 2 0 5 8 6 0 2 0 4 2 9 9 5 9 1 8 1 5 9 0 1 4 7 6 0 6 3 0 0 5 1 5 1 7 6 2 7 3 8 1 6 1 4 1 6 7 4 2 4 3 1 3 3 6 6 3 5 3 5 1 5 0 4 5 7 4 6 1 ...

output:

No

result:

ok answer is NO

Test #11:

score: 0
Accepted
time: 2ms
memory: 10704kb

input:

32051 32051
3 5 1 3 5 1 5 8 2 6 9 4 8 0 0 2 4 4 7 8 9 6 1 4 2 5 3 0 5 4 2 6 4 3 1 1 6 0 5 1 6 2 9 3 2 5 0 7 9 1 3 0 9 1 5 0 7 4 3 5 0 6 5 6 2 3 0 7 1 2 7 2 0 5 8 5 1 2 9 5 0 0 2 6 2 7 2 4 0 9 7 4 9 8 7 0 7 6 8 3 4 9 6 7 4 9 1 1 6 5 8 4 5 8 5 2 9 1 0 2 7 1 7 0 6 9 3 1 0 6 4 3 7 8 3 5 8 4 2 1 5 6 3 5 ...

output:

No

result:

ok answer is NO

Test #12:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

30020 60040
4 5 4 6 4 6 8 3 1 3 3 4 7 3 4 5 5 5 5 7 3 3 6 5 5 2 1 2 6 5 0 4 3 0 9 0 6 0 3 0 7 1 1 7 6 4 3 1 4 3 5 6 1 2 4 9 2 9 8 3 2 4 2 5 5 3 3 8 2 7 4 1 3 0 5 0 7 7 8 3 5 1 2 0 8 2 9 9 7 8 9 1 6 6 5 4 3 3 0 6 3 2 0 6 6 8 2 6 2 2 2 6 8 4 2 5 9 8 6 2 9 9 0 2 4 4 3 6 0 8 5 7 8 4 0 7 3 9 9 7 2 8 6 1 ...

output:

No

result:

ok answer is NO

Test #13:

score: 0
Accepted
time: 0ms
memory: 9932kb

input:

31549 63098
1 8 9 8 8 5 9 5 3 6 2 7 6 7 4 5 9 9 4 1 5 9 1 2 4 6 2 8 0 2 6 0 1 1 8 2 6 2 1 9 4 7 0 8 6 9 1 7 3 4 1 0 1 4 7 9 6 4 5 5 9 7 3 8 7 0 0 3 1 2 5 5 8 8 1 4 9 0 3 5 9 2 8 1 1 7 7 6 7 3 4 2 8 8 7 4 7 5 4 5 1 6 3 5 4 7 0 4 4 2 5 2 4 6 2 0 0 1 0 0 3 2 8 7 6 4 1 8 8 7 8 4 7 9 3 5 2 9 2 4 1 8 8 8 ...

output:

No

result:

ok answer is NO

Test #14:

score: 0
Accepted
time: 5ms
memory: 13860kb

input:

62252 62252
0 3 0 7 2 4 7 5 3 7 6 3 0 6 8 0 5 5 0 2 1 3 2 2 7 6 5 9 3 5 4 9 2 7 6 1 8 3 0 8 1 1 9 4 5 7 3 3 9 0 7 9 9 8 9 6 0 7 2 2 6 3 7 1 8 0 3 2 3 9 2 5 8 2 9 6 5 1 5 0 4 1 4 2 4 6 2 3 0 9 1 7 0 9 6 0 4 5 9 6 4 6 3 4 7 6 4 8 5 6 9 6 5 2 1 8 0 4 9 3 8 1 8 6 4 1 3 7 5 7 3 4 8 9 6 9 2 3 7 5 4 9 6 7 ...

output:

No

result:

ok answer is NO

Test #15:

score: 0
Accepted
time: 1ms
memory: 9928kb

input:

62366 31183
7 6 7 3 3 0 8 1 7 0 4 7 2 4 0 5 1 0 8 5 2 5 5 8 2 4 8 2 0 6 3 6 9 6 6 9 9 0 5 9 2 9 3 4 9 3 1 8 6 1 3 3 6 4 2 8 3 1 0 9 0 2 8 4 1 2 7 0 8 5 8 8 3 7 1 7 1 5 0 8 3 0 7 0 8 6 1 7 3 1 2 1 2 6 6 2 5 9 5 0 7 6 6 7 8 3 8 0 7 2 8 4 7 5 8 2 8 4 3 5 0 2 1 6 4 6 2 9 8 0 7 8 2 6 8 8 4 1 7 0 3 4 4 2 ...

output:

No

result:

ok answer is NO

Test #16:

score: 0
Accepted
time: 0ms
memory: 10824kb

input:

30174 30174
9 5 0 8 6 1 1 1 5 8 9 9 6 7 9 6 6 4 8 6 4 0 5 2 6 5 0 3 3 7 0 4 3 2 6 7 0 9 5 8 1 7 2 4 9 9 3 0 9 3 1 5 5 6 0 1 7 4 4 2 8 0 0 9 7 1 7 8 6 9 3 2 5 6 2 1 8 9 8 9 6 9 6 9 3 3 0 4 4 2 3 2 9 2 4 3 8 2 1 9 7 0 9 3 7 2 3 5 2 8 2 9 4 2 7 4 1 7 7 8 9 2 0 4 7 8 6 3 1 7 8 6 5 4 8 2 5 7 8 1 9 3 2 0 ...

output:

No

result:

ok answer is NO

Test #17:

score: 0
Accepted
time: 0ms
memory: 7880kb

input:

62098 31049
5 0 7 0 4 6 2 7 1 4 3 0 9 0 5 4 4 3 0 8 8 7 0 3 2 1 6 6 5 6 4 8 5 3 3 0 9 2 9 8 3 7 7 8 4 3 1 9 8 7 3 2 4 0 7 2 2 3 9 3 4 2 6 7 7 1 7 6 1 6 1 8 0 5 1 2 8 0 8 2 3 7 7 3 4 2 5 0 2 0 3 3 4 3 2 9 9 4 3 8 4 9 6 9 3 6 3 1 9 1 8 0 4 4 6 3 3 7 9 8 3 3 1 1 9 2 3 6 3 0 0 2 1 3 3 3 7 9 8 5 5 4 2 5 ...

output:

No

result:

ok answer is NO

Test #18:

score: 0
Accepted
time: 2ms
memory: 9936kb

input:

60906 30453
8 2 8 2 5 3 7 2 4 2 6 9 6 6 2 6 9 6 3 6 3 5 9 7 2 7 9 2 1 7 9 2 7 3 7 7 8 7 1 8 5 8 3 7 2 3 7 2 7 4 5 7 0 7 2 4 9 8 3 9 0 0 6 7 3 1 7 8 3 2 5 9 5 8 7 5 3 5 2 4 9 2 6 9 5 3 5 2 9 5 6 5 3 3 1 2 9 4 4 2 6 2 4 4 6 3 4 4 6 6 2 8 1 6 3 8 4 8 1 5 2 5 8 4 1 3 6 7 6 9 5 0 7 5 1 1 1 2 0 7 0 9 0 9 ...

output:

No

result:

ok answer is NO

Test #19:

score: 0
Accepted
time: 2ms
memory: 9932kb

input:

31036 62072
6 6 2 8 4 7 6 0 0 8 2 6 6 8 3 5 8 8 0 9 4 3 8 9 1 9 6 7 1 0 0 7 5 1 9 4 5 8 5 3 9 1 9 3 0 6 1 8 5 5 3 7 8 5 3 8 2 7 2 1 1 3 4 7 1 4 0 8 6 7 0 5 3 3 8 2 3 6 3 2 8 5 6 1 2 6 7 9 9 0 0 6 1 8 4 3 8 4 8 5 0 5 5 2 7 6 8 3 6 8 8 7 5 6 3 8 7 1 6 9 2 0 6 8 0 1 3 6 4 4 4 5 1 5 5 5 1 2 7 6 5 4 1 1 ...

output:

No

result:

ok answer is NO

Test #20:

score: 0
Accepted
time: 3ms
memory: 10188kb

input:

99999 100000
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5...

output:

No

result:

ok answer is NO

Test #21:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

2 3
3 4
3 4 3

output:

No

result:

ok answer is NO

Test #22:

score: 0
Accepted
time: 0ms
memory: 9820kb

input:

50000 100000
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5...

output:

No

result:

ok answer is NO

Test #23:

score: 0
Accepted
time: 2ms
memory: 9928kb

input:

50000 100000
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5...

output:

No

result:

ok answer is NO

Test #24:

score: 0
Accepted
time: 2ms
memory: 9936kb

input:

50000 100000
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5...

output:

No

result:

ok answer is NO

Test #25:

score: 0
Accepted
time: 0ms
memory: 9752kb

input:

5 1
0 1 1 1 1
1

output:

No

result:

ok answer is NO

Test #26:

score: 0
Accepted
time: 3ms
memory: 10184kb

input:

100000 1
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5...

output:

No

result:

ok answer is NO

Test #27:

score: 0
Accepted
time: 0ms
memory: 9764kb

input:

12 12
0 1 0 0 0 1 0 0 0 1 1 0
0 0 1 0 1 1 0 0 1 0 1 1

output:

No

result:

ok answer is NO

Test #28:

score: 0
Accepted
time: 5ms
memory: 12740kb

input:

83160 83160
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 ...

output:

Yes

result:

ok answer is YES

Test #29:

score: 0
Accepted
time: 1ms
memory: 10056kb

input:

83160 41580
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 ...

output:

No

result:

ok answer is NO

Test #30:

score: 0
Accepted
time: 3ms
memory: 14808kb

input:

83160 41580
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 ...

output:

Yes

result:

ok answer is YES

Test #31:

score: 0
Accepted
time: 2ms
memory: 10056kb

input:

83160 41580
5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 5 ...

output:

No

result:

ok answer is NO

Test #32:

score: 0
Accepted
time: 4ms
memory: 13512kb

input:

83160 83160
2 3 0 7 7 9 0 2 9 3 0 6 9 2 3 4 4 3 6 4 5 1 7 7 6 1 1 5 3 3 6 5 5 6 9 4 5 0 8 7 3 6 9 9 8 2 0 2 5 6 4 3 7 9 0 0 8 9 7 8 5 7 4 3 4 3 7 8 3 8 1 6 9 3 5 8 8 8 9 2 8 1 7 0 1 9 6 6 7 4 4 4 5 4 3 0 3 5 9 9 3 9 1 4 4 9 1 5 4 6 0 0 9 7 6 0 0 6 2 5 2 4 9 6 7 8 2 5 9 5 8 3 0 3 2 8 1 4 1 9 9 2 0 9 ...

output:

No

result:

ok answer is NO

Test #33:

score: 0
Accepted
time: 0ms
memory: 9920kb

input:

83160 11
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

Yes

result:

ok answer is YES

Test #34:

score: 0
Accepted
time: 1ms
memory: 9804kb

input:

11 83160
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0...

output:

Yes

result:

ok answer is YES

Test #35:

score: 0
Accepted
time: 0ms
memory: 9932kb

input:

38556 24489
5 8 4 0 1 5 0 5 1 3 2 3 4 3 2 0 5 4 4 0 0 2 3 8 5 2 0 5 8 4 0 1 5 0 5 1 3 2 3 4 3 2 0 5 4 4 0 0 2 3 8 5 2 0 5 8 4 0 1 5 0 5 1 3 2 3 4 3 2 0 5 4 4 0 0 2 3 8 5 2 0 5 8 4 0 1 5 0 5 1 3 2 3 4 3 2 0 5 4 4 0 0 2 3 8 5 2 0 5 8 4 0 1 5 0 5 1 3 2 3 4 3 2 0 5 4 4 0 0 2 3 8 5 2 0 5 8 4 0 1 5 0 5 1 ...

output:

Yes

result:

ok answer is YES

Test #36:

score: 0
Accepted
time: 0ms
memory: 9932kb

input:

53988 22242
3 6 8 1 8 2 3 6 9 4 1 3 7 9 2 3 7 4 8 5 7 7 3 6 8 1 8 2 3 6 9 4 1 3 7 9 2 3 7 4 8 5 7 7 3 6 8 1 8 2 3 6 9 4 1 3 7 9 2 3 7 4 8 5 7 7 3 6 8 1 8 2 3 6 9 4 1 3 7 9 2 3 7 4 8 5 7 7 3 6 8 1 8 2 3 6 9 4 1 3 7 9 2 3 7 4 8 5 7 7 3 6 8 1 8 2 3 6 9 4 1 3 7 9 2 3 7 4 8 5 7 7 3 6 8 1 8 2 3 6 9 4 1 3 ...

output:

Yes

result:

ok answer is YES

Test #37:

score: 0
Accepted
time: 1ms
memory: 7776kb

input:

3306 44042
0 1 8 6 0 9 8 5 9 3 8 1 3 7 9 0 2 4 9 0 1 8 6 0 9 8 5 9 3 8 1 3 7 9 0 2 4 9 0 1 8 6 0 9 8 5 9 3 8 1 3 7 9 0 2 4 9 0 1 8 6 0 9 8 5 9 3 8 1 3 7 9 0 2 4 9 0 1 8 6 0 9 8 5 9 3 8 1 3 7 9 0 2 4 9 0 1 8 6 0 9 8 5 9 3 8 1 3 7 9 0 2 4 9 0 1 8 6 0 9 8 5 9 3 8 1 3 7 9 0 2 4 9 0 1 8 6 0 9 8 5 9 3 8 1...

output:

Yes

result:

ok answer is YES

Test #38:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

23310 7590
6 5 4 9 4 8 6 7 8 3 6 1 1 3 3 3 7 0 2 0 6 7 7 2 6 0 1 4 4 3 6 5 4 9 4 8 6 7 8 3 6 1 1 3 3 3 7 0 2 0 6 7 7 2 6 0 1 4 4 3 6 5 4 9 4 8 6 7 8 3 6 1 1 3 3 3 7 0 2 0 6 7 7 2 6 0 1 4 4 3 6 5 4 9 4 8 6 7 8 3 6 1 1 3 3 3 7 0 2 0 6 7 7 2 6 0 1 4 4 3 6 5 4 9 4 8 6 7 8 3 6 1 1 3 3 3 7 0 2 0 6 7 7 2 6...

output:

Yes

result:

ok answer is YES

Test #39:

score: 0
Accepted
time: 27ms
memory: 27092kb

input:

500000 500000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

Yes

result:

ok answer is YES

Test #40:

score: 0
Accepted
time: 29ms
memory: 27092kb

input:

500000 500000
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...

output:

Yes

result:

ok answer is YES

Test #41:

score: 0
Accepted
time: 4ms
memory: 11216kb

input:

419562 269841
1 7 9 6 2 9 5 9 6 2 7 6 3 5 3 8 6 2 2 8 6 5 6 1 4 4 2 8 5 5 0 4 5 8 2 6 6 7 2 1 5 0 9 8 3 1 3 2 3 5 6 8 1 1 5 2 1 9 1 8 9 5 7 6 1 1 8 3 3 5 4 2 3 0 8 3 9 6 6 2 8 7 6 0 9 3 4 7 5 5 7 5 3 9 6 7 3 6 6 6 5 5 1 1 6 3 6 2 4 8 3 6 6 2 8 3 7 4 0 6 1 5 9 5 4 8 4 5 8 7 8 4 3 9 4 6 3 1 3 6 0 1 0 ...

output:

Yes

result:

ok answer is YES

Test #42:

score: 0
Accepted
time: 5ms
memory: 11468kb

input:

291346 430254
9 5 4 8 6 2 4 5 7 9 6 0 9 9 6 5 6 6 0 0 6 8 4 8 4 6 1 9 5 4 0 5 4 4 6 2 2 5 8 6 1 5 1 4 7 6 0 5 6 6 0 4 0 9 5 1 9 7 4 3 0 7 5 5 7 3 8 4 0 0 4 7 2 1 6 6 4 4 7 7 7 4 0 9 3 1 5 0 1 4 0 3 4 0 4 1 6 4 5 1 3 3 1 7 0 7 6 7 9 9 0 2 2 5 3 6 1 9 5 1 7 8 7 0 5 6 8 2 8 4 7 3 7 8 4 6 7 4 6 1 9 0 3 ...

output:

Yes

result:

ok answer is YES

Test #43:

score: 0
Accepted
time: 4ms
memory: 11392kb

input:

330172 275702
1 4 0 6 9 4 7 9 4 6 0 5 0 3 8 0 3 5 0 7 7 1 7 1 3 2 4 7 4 6 0 4 0 7 6 0 0 9 7 2 8 4 6 0 5 2 7 8 6 1 8 9 8 6 3 1 3 0 4 5 4 8 7 3 7 0 6 8 2 8 8 8 4 6 6 7 1 0 4 8 2 2 9 1 3 1 7 9 2 8 9 8 1 9 8 0 5 5 2 4 9 2 9 6 8 9 9 0 4 6 5 0 2 4 5 2 9 4 9 2 5 6 1 0 2 5 1 0 9 9 4 6 2 8 1 1 3 1 2 9 7 5 6 ...

output:

No

result:

ok answer is NO

Test #44:

score: 0
Accepted
time: 10ms
memory: 11836kb

input:

459361 473731
3 7 4 2 8 1 9 1 1 0 9 6 3 2 0 3 1 2 7 5 7 4 7 2 5 2 9 7 4 9 3 8 5 9 0 9 4 5 2 0 6 9 8 1 2 2 7 8 7 2 9 1 7 1 7 8 9 3 3 5 8 1 8 1 4 2 9 7 2 8 4 9 7 1 6 3 7 0 8 7 4 0 0 9 4 9 6 1 7 0 2 3 4 1 9 6 8 6 7 4 4 4 8 0 7 0 2 1 6 4 4 5 6 2 5 7 5 0 8 8 0 1 7 7 1 8 8 4 3 7 4 0 8 3 9 6 4 4 7 6 4 2 1 ...

output:

No

result:

ok answer is NO

Test #45:

score: 0
Accepted
time: 6ms
memory: 12220kb

input:

500000 499999
7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 3 7 ...

output:

No

result:

ok answer is NO

Test #46:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

1 1
0
0

output:

Yes

result:

ok answer is YES

Test #47:

score: 0
Accepted
time: 1ms
memory: 9640kb

input:

2 1
0 0
0

output:

Yes

result:

ok answer is YES

Test #48:

score: 0
Accepted
time: 0ms
memory: 9804kb

input:

1 2
0
0 0

output:

Yes

result:

ok answer is YES

Test #49:

score: 0
Accepted
time: 0ms
memory: 9628kb

input:

1 2
0
0 1

output:

No

result:

ok answer is NO

Test #50:

score: 0
Accepted
time: 0ms
memory: 9800kb

input:

1 2
0
1 0

output:

No

result:

ok answer is NO