#abc274h. [abc274_h]XOR Sum of Arrays
[abc274_h]XOR Sum of Arrays
Problem Statement
For sequences and , each of length , consisting of non-negative integers, let the XOR sum of and be defined as the sequence $(B_1\\oplus C_1, B_2\\oplus C_2, ..., B_{M}\\oplus C_{M})$ of length consisting of non-negative integers. Here, represents bitwise XOR.
For instance, if and , we have $S(B, C) = (1\\oplus 3, 2\\oplus 5, 3\\oplus 7) = (2, 7, 4)$.
You are given a sequence of non-negative integers. Let denote the contiguous subsequence composed of the -th through -th elements of .
You will be given queries explained below and asked to process all of them.
Each query gives you integers , , , , , and , each between and , inclusive. These integers satisfy , , , and . If is strictly lexicographically smaller than , print Yes
; otherwise, print No
.
What is bitwise XOR? The exclusive logical sum of two integers and is defined as follows.
- The 's place () in the binary notation of is if exactly one of the 's places in the binary notation of and is ; otherwise, it is .
For example, (In binary notation: ). What is lexicographical order on sequences?
A sequence is said to be strictly lexicographically smaller than a sequence if and only if 1. or 2. below is satisfied.
- and .
- There is an integer that satisfies both of the following.
- .
- .
Constraints
- All values in the input are integers.
Input
The input is given from Standard Input in the following format, where represents the -th query:
The queries are in the following format:
Output
Print lines. The -th line should contain the answer to the -th query.
Sample Input 1
4 5
1 2 3 1
1 3 2 4 1 4
1 2 2 3 3 4
1 1 2 2 3 4
1 2 2 3 3 3
1 4 1 4 1 1
Sample Output 1
No
No
Yes
No
Yes
For the first query, we have and , so $S(A(1,3),A(2,4)) = (1 \\oplus 2, 2 \\oplus 3, 3 \\oplus 1) = (3, 1, 2)$. This is lexicographcially larger than , so the answer is No
.
For the second query, we have and , which are equal, so the answer is No
.
Sample Input 2
10 10
725560240 9175925348 9627229768 7408031479 623321125 4845892509 8712345300 1026746010 4844359340 2169008582
5 6 5 6 2 6
5 6 1 2 1 1
3 8 3 8 1 6
5 10 1 6 1 7
3 4 1 2 5 5
7 10 4 7 2 3
3 6 1 4 7 9
4 5 3 4 8 9
2 6 1 5 5 8
4 8 1 5 1 9
Sample Output 2
Yes
Yes
Yes
Yes
No
No
No
No
No
No