Consider two descending sequences of integers
and
with
and
and for all
,
. The distance between two elements
and
is given by
![\displaystyle d(X[i], Y[j]) = \begin{cases}j-i & \text{if }j \ge i \text{ and } Y[j] \ge X[i] \\ 0 & \text{otherwise}\end{cases}](//static.dmoj.ca/mathoid/f57a76b03d5bbca06bcd2587ceab45165a873c4a/svg)
The distance between sequence
and sequence
is defined by
![\displaystyle d(X, Y) = \max \{d(X[i], Y[j]) \mid 0 \le i < n, 0 \le j < n\}](//static.dmoj.ca/mathoid/d96d2e0a36492bd2453e00344de0f39d6d1315a2/svg)
You may assume
.
For example, for the sequences
and
below, their maximum distance is reached for
and
, so
.
Copy
i=2
|
v
X 8 8 4 4 4 3 3 3 1
Y 9 9 8 8 6 5 5 4 3
^
|
j=7
Input Specification
The first sequence is the
sequence and the second is the
sequence. You may assume that the sequences are descending and of equal length. A pair of sequences is preceded by a number on a single line indicating the number of elements in the sequences. Numbers in a sequence are separated by a space, and each sequence is on a single line by itself. As usual, the first number in the input gives the number of test cases.
Sample Input
Copy
2
9
8 8 4 4 4 3 3 3 1
9 9 8 8 6 5 5 4 3
7
6 5 4 4 4 4 4
3 3 3 3 3 3 3
Sample Output
Copy
The maximum distance is 5
The maximum distance is 0
Comments
Don't assume that all the numbers will be single digits, I did that for some reason
WAYYY TOO HARDDD!!!!
The additional test case from WCIPEG has been added, worth 90% of points and all submissions have been rejudged.
For anyone who doesn't understand this problem, you have to basically find the maximum distance between two values in the arrays given
n
times.On line 1, there is a single integer
n
.l
.l
integers.Repeat steps 1 & 2
n
times.Hope this helps you understand the problem a bit better.